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)
- 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 c33470300..a8a52ce9a 100644
--- a/auth-passwd.c
+++ b/auth-passwd.c
@@ -11,7 +11,7 @@
11 11
12#ifndef USE_PAM 12#ifndef USE_PAM
13 13
14RCSID("$Id: auth-passwd.c,v 1.14 1999/12/30 21:49:13 damien Exp $"); 14RCSID("$Id: auth-passwd.c,v 1.15 2000/01/06 01:03:13 damien Exp $");
15 15
16#include "packet.h" 16#include "packet.h"
17#include "ssh.h" 17#include "ssh.h"
@@ -21,9 +21,6 @@ RCSID("$Id: auth-passwd.c,v 1.14 1999/12/30 21:49:13 damien Exp $");
21#ifdef HAVE_SHADOW_H 21#ifdef HAVE_SHADOW_H
22# include <shadow.h> 22# include <shadow.h>
23#endif 23#endif
24#if defined(HAVE_CRYPT_H) && !defined(CRYPT_H_BREAKS_BUILD)
25# include <crypt.h>
26#endif /* defined(HAVE_CRYPT_H) && !defined(CRYPT_H_BREAKS_BUILD) */
27#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) 24#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
28# include "md5crypt.h" 25# include "md5crypt.h"
29#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */ 26#endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */