summaryrefslogtreecommitdiff
path: root/sshconnect2.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshconnect2.c')
-rw-r--r--sshconnect2.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sshconnect2.c b/sshconnect2.c
index 933c223ec..4e3ae2de7 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: sshconnect2.c,v 1.124 2003/08/25 10:33:33 djm Exp $"); 26RCSID("$OpenBSD: sshconnect2.c,v 1.125 2003/10/07 01:47:27 dtucker Exp $");
27 27
28#include "openbsd-compat/sys-queue.h" 28#include "openbsd-compat/sys-queue.h"
29 29
@@ -361,7 +361,8 @@ input_userauth_banner(int type, u_int32_t seq, void *ctxt)
361 debug3("input_userauth_banner"); 361 debug3("input_userauth_banner");
362 msg = packet_get_string(NULL); 362 msg = packet_get_string(NULL);
363 lang = packet_get_string(NULL); 363 lang = packet_get_string(NULL);
364 logit("%s", msg); 364 if (options.log_level > SYSLOG_LEVEL_QUIET)
365 fprintf(stderr, "%s", msg);
365 xfree(msg); 366 xfree(msg);
366 xfree(lang); 367 xfree(lang);
367} 368}