summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-03 10:30:56 +1100
committerDamien Miller <djm@mindrot.org>2002-01-03 10:30:56 +1100
commitf9661094e5e2854c37d24264b60a0da23ffd6deb (patch)
treee9e461b03442d054fc57cdb01601c58433efee65
parentb65a93d3a637408c52df5ff2ec3cf751d1a7cb78 (diff)
- (djm) Use bigcrypt() on systems with SCO_PROTECTED_PW. Patch from
Roger Cornelius <rac@tenzing.org>
-rw-r--r--ChangeLog6
-rw-r--r--auth-passwd.c4
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b06563a1..d7bf09ef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20020103
+ - (djm) Use bigcrypt() on systems with SCO_PROTECTED_PW. Patch from
+ Roger Cornelius <rac@tenzing.org>
+
20011229
- (djm) Apply Cygwin pointer deref fix from Corinna Vinschen
<vinschen@redhat.com> Could be abused to guess valid usernames
@@ -7114,4 +7118,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1713 2001/12/31 00:59:53 djm Exp $
+$Id: ChangeLog,v 1.1714 2002/01/02 23:30:56 djm Exp $
diff --git a/auth-passwd.c b/auth-passwd.c
index 988297cb..3546636a 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 */