diff options
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) | |||
212 | else | 212 | else |
213 | encrypted_password = crypt(password, salt); | 213 | encrypted_password = crypt(password, salt); |
214 | # else | 214 | # else |
215 | # ifdef HAVE_SCO_PROTECTED_PW | ||
216 | encrypted_password = bigcrypt(password, salt); | ||
217 | # else | ||
215 | encrypted_password = crypt(password, salt); | 218 | encrypted_password = crypt(password, salt); |
219 | # endif /* HAVE_SCO_PROTECTED_PW */ | ||
216 | # endif /* __hpux */ | 220 | # endif /* __hpux */ |
217 | #endif /* HAVE_MD5_PASSWORDS */ | 221 | #endif /* HAVE_MD5_PASSWORDS */ |
218 | 222 | ||