summaryrefslogtreecommitdiff
path: root/auth-passwd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-06-28 15:22:41 +1000
committerDamien Miller <djm@mindrot.org>2000-06-28 15:22:41 +1000
commitb8c656e744a0a9110e5eb0ea5a6587efb181b20a (patch)
tree090ecdf170d3a8e3b184a1607a1807fac26d663a /auth-passwd.c
parent262ff170fbd9d2071a43e97656a6bd705dda7e4c (diff)
downloadopenssh-git-b8c656e744a0a9110e5eb0ea5a6587efb181b20a.tar.gz
- (djm) Added patch from Chris Adams <cmadams@hiwaay.net> to add OSF SIA
support. Enable using "USE_SIA=1 ./configure [options]"
Diffstat (limited to 'auth-passwd.c')
-rw-r--r--auth-passwd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth-passwd.c b/auth-passwd.c
index d722122c..93756e9e 100644
--- a/auth-passwd.c
+++ b/auth-passwd.c
@@ -9,10 +9,10 @@
#include "includes.h"
-#ifndef USE_PAM
-
RCSID("$OpenBSD: auth-passwd.c,v 1.16 2000/06/20 01:39:38 markus Exp $");
+#if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
+
#include "packet.h"
#include "ssh.h"
#include "servconf.h"
@@ -139,4 +139,4 @@ auth_password(struct passwd * pw, const char *password)
/* Authentication is accepted if the encrypted passwords are identical. */
return (strcmp(encrypted_password, pw_password) == 0);
}
-#endif /* !USE_PAM */
+#endif /* !USE_PAM && !HAVE_OSF_SIA */