X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/blobdiff_plain/1e608e420beaca67ca6bc6bef308f9f9f6132a66..HEAD:/openssh/auth-passwd.c diff --git a/openssh/auth-passwd.c b/openssh/auth-passwd.c index 095b9ba..988297c 100644 --- a/openssh/auth-passwd.c +++ b/openssh/auth-passwd.c @@ -36,11 +36,12 @@ */ #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 */