summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--acconfig.h3
-rw-r--r--auth1.c8
3 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 4b9a58730..c2fe24735 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
720000702 920000702
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
diff --git a/auth1.c b/auth1.c
index 8f2c5a804..d8f2652e3 100644
--- a/auth1.c
+++ b/auth1.c
@@ -26,6 +26,10 @@ RCSID("$OpenBSD: auth1.c,v 1.2 2000/04/29 18:11:52 markus Exp $");
26/* import */ 26/* import */
27extern ServerOptions options; 27extern ServerOptions options;
28extern char *forced_command; 28extern char *forced_command;
29#ifdef HAVE_OSF_SIA
30extern int saved_argc;
31extern 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);