Ignore:
Timestamp:
Jun 4, 2010, 3:11:43 PM (15 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.5: merged changes from 3.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/smbd/password.c

    r414 r454  
    219219                return -1;
    220220        }
     221
     222#ifdef __OS2__
     223                        /* On OS/2 we use drive letters which have a colon.  This is also the field
     224                           separator in master.passwd, so we use a $ instead of a colon for the drive
     225                           separator, ie e$/user instead of e:/user.  This code simply exchanges any $
     226                           for a : in the user's homedir */
     227                        if (pwd->pw_dir[1] == '$')
     228                                        pwd->pw_dir[1] = ':';
     229#endif
    221230
    222231        DEBUG(3, ("Adding homes service for user '%s' using home directory: "
Note: See TracChangeset for help on using the changeset viewer.