diff options
author | Damien Miller <djm@mindrot.org> | 2002-01-03 00:30:56 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-01-03 00:30:56 +0100 |
commit | f9661094e5e2854c37d24264b60a0da23ffd6deb (patch) | |
tree | e9e461b03442d054fc57cdb01601c58433efee65 /auth-passwd.c | |
parent | test openssh-commits list (diff) | |
download | openssh-f9661094e5e2854c37d24264b60a0da23ffd6deb.tar.xz openssh-f9661094e5e2854c37d24264b60a0da23ffd6deb.zip |
- (djm) Use bigcrypt() on systems with SCO_PROTECTED_PW. Patch from
Roger Cornelius <rac@tenzing.org>
Diffstat (limited to 'auth-passwd.c')
-rw-r--r-- | auth-passwd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/auth-passwd.c b/auth-passwd.c index 988297cb4..3546636aa 100644 --- a/auth-passwd.c +++ b/auth-passwd.c @@ -212,7 +212,11 @@ auth_password(Authctxt *authctxt, const char *password) else encrypted_password = crypt(password, salt); # else +# ifdef HAVE_SCO_PROTECTED_PW + encrypted_password = bigcrypt(password, salt); +# else encrypted_password = crypt(password, salt); +# endif /* HAVE_SCO_PROTECTED_PW */ # endif /* __hpux */ #endif /* HAVE_MD5_PASSWORDS */ |