Changeset 106

Show
Ignore:
Timestamp:
12/07/07 09:57:23 (12 months ago)
Author:
psmedley
Message:

Revert fix for Ticket #22 - still seems fixed, but solves SIGSEGV in smbd.exe from connection from a Mac

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/smbd/uid.c

    r54 r106  
    150150BOOL change_to_user(connection_struct *conn, uint16 vuid) 
    151151{ 
    152 #ifndef __OS2__ 
    153152        user_struct *vuser = get_valid_user_struct(vuid); 
     153 
    154154        int snum; 
    155155        gid_t gid; 
     
    273273        DEBUG(5,("change_to_user uid=(%d,%d) gid=(%d,%d)\n", 
    274274                 (int)getuid(),(int)geteuid(),(int)getgid(),(int)getegid())); 
    275 #endif   
     275 
    276276        return(True); 
    277277}