]> andersk Git - gssapi-openssh.git/blobdiff - openssh/auth-passwd.c
The man2html from jbasney on pkilab2 works whereas the standard one doesn't.
[gssapi-openssh.git] / openssh / auth-passwd.c
index 095b9ba27c9b43e7eba6c5bd2c9de28cbb10b704..988297cb464a4bbd01a681bf17cf2771eab44665 100644 (file)
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: auth-passwd.c,v 1.24 2002/03/04 12:43:06 markus Exp $");
+RCSID("$OpenBSD: auth-passwd.c,v 1.23 2001/06/26 16:15:23 dugsong Exp $");
 
 #if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
 
 #include "packet.h"
+#include "xmalloc.h"
 #include "log.h"
 #include "servconf.h"
 #include "auth.h"
@@ -211,11 +212,7 @@ 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 */
 
This page took 0.03474 seconds and 4 git commands to generate.