diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | acconfig.h | 3 | ||||
-rw-r--r-- | auth1.c | 8 |
3 files changed, 9 insertions, 4 deletions
@@ -3,6 +3,8 @@ | |||
3 | Aaron Hopkins <aaron@die.net> | 3 | Aaron Hopkins <aaron@die.net> |
4 | - (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from | 4 | - (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from |
5 | Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> | 5 | Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> |
6 | - (djm) Fixed undefined variables for OSF SIA. Report from | ||
7 | Baars, Henk <Hendrik.Baars@nl.origin-it.com> | ||
6 | 8 | ||
7 | 20000702 | 9 | 20000702 |
8 | - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com> | 10 | - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com> |
diff --git a/acconfig.h b/acconfig.h index b011d0421..af990565c 100644 --- a/acconfig.h +++ b/acconfig.h | |||
@@ -6,6 +6,9 @@ | |||
6 | 6 | ||
7 | @TOP@ | 7 | @TOP@ |
8 | 8 | ||
9 | /* Use PIPES instead of a socketpair() */ | ||
10 | #undef USE_PIPES | ||
11 | |||
9 | /* Define if your snprintf is busted */ | 12 | /* Define if your snprintf is busted */ |
10 | #undef BROKEN_SNPRINTF | 13 | #undef BROKEN_SNPRINTF |
11 | 14 | ||
@@ -26,6 +26,10 @@ RCSID("$OpenBSD: auth1.c,v 1.2 2000/04/29 18:11:52 markus Exp $"); | |||
26 | /* import */ | 26 | /* import */ |
27 | extern ServerOptions options; | 27 | extern ServerOptions options; |
28 | extern char *forced_command; | 28 | extern char *forced_command; |
29 | #ifdef HAVE_OSF_SIA | ||
30 | extern int saved_argc; | ||
31 | extern char **saved_argv; | ||
32 | #endif /* HAVE_OSF_SIA */ | ||
29 | 33 | ||
30 | /* | 34 | /* |
31 | * convert ssh auth msg type into description | 35 | * convert ssh auth msg type into description |
@@ -146,10 +150,6 @@ do_authloop(struct passwd * pw) | |||
146 | unsigned int ulen; | 150 | unsigned int ulen; |
147 | int type = 0; | 151 | int type = 0; |
148 | void (*authlog) (const char *fmt,...) = verbose; | 152 | void (*authlog) (const char *fmt,...) = verbose; |
149 | #ifdef HAVE_OSF_SIA | ||
150 | extern int saved_argc; | ||
151 | extern char **saved_argv; | ||
152 | #endif /* HAVE_OSF_SIA */ | ||
153 | 153 | ||
154 | /* Indicate that authentication is needed. */ | 154 | /* Indicate that authentication is needed. */ |
155 | packet_start(SSH_SMSG_FAILURE); | 155 | packet_start(SSH_SMSG_FAILURE); |