]> andersk Git - openssh.git/commitdiff
- dtucker@cvs.openbsd.org 2006/08/30 00:06:51
authordjm <djm>
Wed, 30 Aug 2006 01:08:33 +0000 (01:08 +0000)
committerdjm <djm>
Wed, 30 Aug 2006 01:08:33 +0000 (01:08 +0000)
     [sshconnect2.c]
     Fix regression where SSH2 banner is printed at loglevels ERROR and FATAL
     where previously it weren't.  bz #1221, found by Dean Kopesky, ok djm@

ChangeLog
sshconnect2.c

index 34a0ee65ed80ac49ce4f5a33d2c0a73c2eab88e2..926ef3f861858a00b33a3132f0500742ca73e702 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      missing, by checking whether or not kerberos allocated us a context
      before attempting to free it.  Patch from Simon Wilkinson, tested by
      biorn@, ok djm@
+   - dtucker@cvs.openbsd.org 2006/08/30 00:06:51
+     [sshconnect2.c]
+     Fix regression where SSH2 banner is printed at loglevels ERROR and FATAL
+     where previously it weren't.  bz #1221, found by Dean Kopesky, ok djm@
 
 20060824
  - (dtucker) [openbsd-compat/basename.c] Include errno.h.
index 8b2e633c0b435a4e3edbf11c98bad50da858a25b..5846c8e9ce4899b96e5f096ff61c242a3cb6e203 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect2.c,v 1.161 2006/08/18 13:54:54 djm Exp $ */
+/* $OpenBSD: sshconnect2.c,v 1.162 2006/08/30 00:06:51 dtucker Exp $ */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *
@@ -377,7 +377,7 @@ input_userauth_banner(int type, u_int32_t seq, void *ctxt)
        debug3("input_userauth_banner");
        msg = packet_get_string(NULL);
        lang = packet_get_string(NULL);
-       if (options.log_level > SYSLOG_LEVEL_QUIET)
+       if (options.log_level >= SYSLOG_LEVEL_INFO)
                fprintf(stderr, "%s", msg);
        xfree(msg);
        xfree(lang);
This page took 0.111941 seconds and 5 git commands to generate.