diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/password.c | 4 |
1 files changed, 4 insertions, 0 deletions
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); |