diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-06-28 04:50:31 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-06-28 04:50:31 +0000 |
commit | 22f7f6acb8a8c9cacd0065e1913864821f897afc (patch) | |
tree | f9724110ed52971045a72c144d32a88b9ea616f2 /security/openssh/files/patch-auth1.c | |
parent | Make configure script executable and use ${STRIP_CMD} (diff) |
Defaults changed: (Gregory Sutter)
ChallengeResponseAuthentication no
UseLogin no
SSH_PRIVSEP_USER=sshd, distributioin patch set it to nobodyh. (Jan Srzednicki)
#undef USE_PIPES, problems with ppp over ssh. (Kugimoto Takeshi)
fix missing includes for "canohost.h"
Notes
Notes:
svn path=/head/; revision=62139
Diffstat (limited to 'security/openssh/files/patch-auth1.c')
-rw-r--r-- | security/openssh/files/patch-auth1.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/security/openssh/files/patch-auth1.c b/security/openssh/files/patch-auth1.c index ce0593315499..8dabcfa61831 100644 --- a/security/openssh/files/patch-auth1.c +++ b/security/openssh/files/patch-auth1.c @@ -1,21 +1,21 @@ --- auth1.c.orig Wed Jun 19 02:27:55 2002 -+++ auth1.c Wed Jun 26 18:05:48 2002 -@@ -27,6 +27,15 @@ ++++ auth1.c Fri Jun 28 06:45:24 2002 +@@ -26,6 +26,15 @@ + #include "session.h" #include "uidswap.h" #include "monitor_wrap.h" - ++#include "canohost.h" ++ +#ifdef HAVE_LOGIN_CAP +#include <login_cap.h> +#endif /* HAVE_LOGIN_CAP */ +#ifdef USE_PAM -+#include "canohost.h" +#include "auth-pam.h" +#include <security/pam_appl.h> +#endif /* USE_PAM */ -+ + /* import */ extern ServerOptions options; - @@ -75,6 +84,16 @@ u_int ulen; int type = 0; |