Changeset 454 for trunk/server/source3/smbd/password.c
- Timestamp:
- Jun 4, 2010, 3:11:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/smbd/password.c
r414 r454 219 219 return -1; 220 220 } 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 221 230 222 231 DEBUG(3, ("Adding homes service for user '%s' using home directory: "
Note:
See TracChangeset
for help on using the changeset viewer.