Ignore:
Timestamp:
Jul 2, 2011, 3:35:33 PM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update trunk to 3.5.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/passdb/pdb_interface.c

    r414 r596  
    255255        const char *guestname = lp_guestaccount();
    256256
    257         if ( !(pwd = getpwnam_alloc(talloc_autofree_context(), guestname ) ) ) {
     257        if ( !(pwd = Get_Pwnam_alloc(talloc_autofree_context(), guestname ) ) ) {
    258258                DEBUG(0,("guest_user_info: Unable to locate guest account [%s]!\n",
    259259                        guestname));
     
    14241424           The primary group SID is only of real use to Windows clients */
    14251425
    1426         if ( !(pw = getpwnam_alloc(mem_ctx, username)) ) {
     1426        if ( !(pw = Get_Pwnam_alloc(mem_ctx, username)) ) {
    14271427                return NT_STATUS_NO_SUCH_USER;
    14281428        }
Note: See TracChangeset for help on using the changeset viewer.