mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 16:24:39 +02:00
*** empty log message ***
This commit is contained in:
parent
90dcc0590d
commit
fe668e4b16
@ -3,6 +3,8 @@
|
|||||||
Aaron Hopkins <aaron@die.net>
|
Aaron Hopkins <aaron@die.net>
|
||||||
- (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from
|
- (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from
|
||||||
Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
|
Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
|
||||||
|
- (djm) Fixed undefined variables for OSF SIA. Report from
|
||||||
|
Baars, Henk <Hendrik.Baars@nl.origin-it.com>
|
||||||
|
|
||||||
20000702
|
20000702
|
||||||
- (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
|
- (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
|
||||||
|
@ -6,6 +6,9 @@
|
|||||||
|
|
||||||
@TOP@
|
@TOP@
|
||||||
|
|
||||||
|
/* Use PIPES instead of a socketpair() */
|
||||||
|
#undef USE_PIPES
|
||||||
|
|
||||||
/* Define if your snprintf is busted */
|
/* Define if your snprintf is busted */
|
||||||
#undef BROKEN_SNPRINTF
|
#undef BROKEN_SNPRINTF
|
||||||
|
|
||||||
|
8
auth1.c
8
auth1.c
@ -26,6 +26,10 @@ RCSID("$OpenBSD: auth1.c,v 1.2 2000/04/29 18:11:52 markus Exp $");
|
|||||||
/* import */
|
/* import */
|
||||||
extern ServerOptions options;
|
extern ServerOptions options;
|
||||||
extern char *forced_command;
|
extern char *forced_command;
|
||||||
|
#ifdef HAVE_OSF_SIA
|
||||||
|
extern int saved_argc;
|
||||||
|
extern char **saved_argv;
|
||||||
|
#endif /* HAVE_OSF_SIA */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* convert ssh auth msg type into description
|
* convert ssh auth msg type into description
|
||||||
@ -146,10 +150,6 @@ do_authloop(struct passwd * pw)
|
|||||||
unsigned int ulen;
|
unsigned int ulen;
|
||||||
int type = 0;
|
int type = 0;
|
||||||
void (*authlog) (const char *fmt,...) = verbose;
|
void (*authlog) (const char *fmt,...) = verbose;
|
||||||
#ifdef HAVE_OSF_SIA
|
|
||||||
extern int saved_argc;
|
|
||||||
extern char **saved_argv;
|
|
||||||
#endif /* HAVE_OSF_SIA */
|
|
||||||
|
|
||||||
/* Indicate that authentication is needed. */
|
/* Indicate that authentication is needed. */
|
||||||
packet_start(SSH_SMSG_FAILURE);
|
packet_start(SSH_SMSG_FAILURE);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user