From 7097597fd64353f023fae28124bae20e74fd18ed Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 2 Dec 1997 23:27:40 +0000 Subject: HPUX trusted systems need to use bigcrypt() not crypt() (This used to be commit 979eaf9e9c4dd58f1371597585d4cd64841febd0) --- source3/smbd/password.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/smbd') diff --git a/source3/smbd/password.c b/source3/smbd/password.c index 185fc68f5a..2176d5dafa 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -781,6 +781,10 @@ Hence we make a direct return to avoid a second chance!!! return(linux_bigcrypt(password,this_salt,this_crypted)); #endif +#ifdef HPUX_10_TRUSTED + return(bigcrypt(password,this_salt,this_crypted)); +#endif + #ifdef NO_CRYPT DEBUG(1,("Warning - no crypt available\n")); return(False); -- cgit