Changeset 596 for trunk/server/source3/passdb/pdb_interface.c
- Timestamp:
- Jul 2, 2011, 3:35:33 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/passdb/pdb_interface.c
r414 r596 255 255 const char *guestname = lp_guestaccount(); 256 256 257 if ( !(pwd = getpwnam_alloc(talloc_autofree_context(), guestname ) ) ) {257 if ( !(pwd = Get_Pwnam_alloc(talloc_autofree_context(), guestname ) ) ) { 258 258 DEBUG(0,("guest_user_info: Unable to locate guest account [%s]!\n", 259 259 guestname)); … … 1424 1424 The primary group SID is only of real use to Windows clients */ 1425 1425 1426 if ( !(pw = getpwnam_alloc(mem_ctx, username)) ) {1426 if ( !(pw = Get_Pwnam_alloc(mem_ctx, username)) ) { 1427 1427 return NT_STATUS_NO_SUCH_USER; 1428 1428 }
Note:
See TracChangeset
for help on using the changeset viewer.