diff options
author | Jeremy Allison <jra@samba.org> | 1998-06-13 03:04:00 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-06-13 03:04:00 +0000 |
commit | beef636a4d772457816ef068c62ea965d07131f6 (patch) | |
tree | ebd00310aab52b7115629cd57530222866531756 /source/smbd/password.c | |
parent | a70b929ec7b38855b7d09378536620c3f221cbe8 (diff) | |
download | samba-beef636a4d772457816ef068c62ea965d07131f6.tar.gz samba-beef636a4d772457816ef068c62ea965d07131f6.tar.xz samba-beef636a4d772457816ef068c62ea965d07131f6.zip |
Makefile: Added ubi_sLinkList.o as the groupname.o file needs it. Added groupname.o
includes.h: Added ubi_sLinkList.h include.
loadparm.c: Added groupname map parameter.
password.c: Fix HPUX big_crypt.
username.c: New user_in_list() code. Moved groupname map code to groupname.c
lib/rpc/server/srv_util.c: Added lookup_wellknown_sid_from_name().
New groupname map stuff. Note that nothing currently uses this but at
compiles ok.
Jeremy.
Diffstat (limited to 'source/smbd/password.c')
-rw-r--r-- | source/smbd/password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/password.c b/source/smbd/password.c index 48fd7cbe24e..277e3a592e4 100644 --- a/source/smbd/password.c +++ b/source/smbd/password.c @@ -961,7 +961,7 @@ Hence we make a direct return to avoid a second chance!!! #endif #ifdef HPUX_10_TRUSTED - return(bigcrypt(password,this_salt,this_crypted)); + return(strcmp(bigcrypt(password,this_salt),this_crypted) == 0); #endif #ifdef NO_CRYPT |