Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/external/bsd/openssh/dist Don't treat mostly connecti...



details:   https://anonhg.NetBSD.org/src/rev/fecce462747f
branches:  trunk
changeset: 836199:fecce462747f
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Oct 02 22:44:07 2018 +0000

description:
Don't treat mostly connection closed events as filtering events.
There a a failed to negotiate instance too, but I don't want to generate
more diff.

diffstat:

 crypto/external/bsd/openssh/dist/log.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 133d683d0d14 -r fecce462747f crypto/external/bsd/openssh/dist/log.c
--- a/crypto/external/bsd/openssh/dist/log.c    Tue Oct 02 22:40:28 2018 +0000
+++ b/crypto/external/bsd/openssh/dist/log.c    Tue Oct 02 22:44:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: log.c,v 1.18 2018/08/26 07:46:36 christos Exp $        */
+/*     $NetBSD: log.c,v 1.19 2018/10/02 22:44:07 christos Exp $        */
 /* $OpenBSD: log.c,v 1.51 2018/07/27 12:03:17 markus Exp $ */
 
 /*
@@ -37,7 +37,7 @@
  */
 
 #include "includes.h"
-__RCSID("$NetBSD: log.c,v 1.18 2018/08/26 07:46:36 christos Exp $");
+__RCSID("$NetBSD: log.c,v 1.19 2018/10/02 22:44:07 christos Exp $");
 #include <sys/types.h>
 #include <sys/uio.h>
 
@@ -183,7 +183,7 @@
        va_start(args, fmt);
        do_log(SYSLOG_LEVEL_INFO, fmt, args);
        va_end(args);
-       cleanup_exit(255);
+       cleanup_exit(254);
 }
 
 /* Log this message (information that usually should go to the log). */



Home | Main Index | Thread Index | Old Index