diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-09 15:09:52 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-09 15:09:52 +0000 |
commit | 4c061ca15cd1e9b0e2ce32218727c4040757c98d (patch) | |
tree | db80d870637ea6047c3155c980ae1073ca53bcb2 /source3/smbd/password.c | |
parent | 6841ca0a07fc32b7252d6a7945f61ddbbaccd1cf (diff) | |
download | samba-4c061ca15cd1e9b0e2ce32218727c4040757c98d.tar.gz samba-4c061ca15cd1e9b0e2ce32218727c4040757c98d.tar.bz2 samba-4c061ca15cd1e9b0e2ce32218727c4040757c98d.zip |
- use smb_gwtpwnam() in another couple of places
- don't call add/del user if the scripts are empty
(This used to be commit 43860215d4d16cb1bacdc77f1c46c54e4c54abd7)
Diffstat (limited to 'source3/smbd/password.c')
-rw-r--r-- | source3/smbd/password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c index 0478e205d1..70663f0909 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -491,7 +491,7 @@ BOOL pass_check_smb(char *user, char *domain, } else { - pass = Get_Pwnam(user,True); + pass = smb_getpwnam(user,domain,True); } if (pass == NULL) |