summaryrefslogtreecommitdiff
path: root/auth-passwd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-01-06 12:03:12 +1100
committerDamien Miller <djm@mindrot.org>2000-01-06 12:03:12 +1100
commit1808f38e04dc386bd2caacffe0192d62c1a70286 (patch)
treecace20a20ba0837b347241ae23aa4f428245b9fc /auth-passwd.c
parent62ab38ab9e5bae5b516ff10ab62ef55a2592059a (diff)
downloadopenssh-git-1808f38e04dc386bd2caacffe0192d62c1a70286.tar.gz
- Fixed annoying DES corruption problem. libcrypt has been
overriding symbols in libcrypto. Removed libcrypt and crypt.h altogether (libcrypto includes its own crypt(1) replacement) - Added platform-specific rules for Irix 6.x. Included warning that they are untested.
Diffstat (limited to 'auth-passwd.c')
-rw-r--r--auth-passwd.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/auth-passwd.c b/auth-passwd.c
index c3347030..a8a52ce9 100644
--- a/auth-passwd.c
+++ b/auth-passwd.c
@@ -11,7 +11,7 @@
#ifndef USE_PAM
-RCSID("$Id: auth-passwd.c,v 1.14 1999/12/30 21:49:13 damien Exp $");
+RCSID("$Id: auth-passwd.c,v 1.15 2000/01/06 01:03:13 damien Exp $");
#include "packet.h"
#include "ssh.h"
@@ -21,9 +21,6 @@ RCSID("$Id: auth-passwd.c,v 1.14 1999/12/30 21:49:13 damien Exp $");
#ifdef HAVE_SHADOW_H
# include <shadow.h>
#endif
-#if defined(HAVE_CRYPT_H) && !defined(CRYPT_H_BREAKS_BUILD)
-# include <crypt.h>
-#endif /* defined(HAVE_CRYPT_H) && !defined(CRYPT_H_BREAKS_BUILD) */
#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
# include "md5crypt.h"
#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */