summaryrefslogtreecommitdiffstats
path: root/mux.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2022-01-11 01:26:47 +0000
committerDamien Miller <djm@mindrot.org>2022-01-12 09:33:35 +1100
commita882a09722c9f086c9edb65d0c4022fd965ec1ed (patch)
tree2b6d283b8dbeee8c037ca73df6bac00bba962326 /mux.c
parent61a1a6af22e17fc94999a5d1294f27346e6c4668 (diff)
upstream: suppress "Connection to xxx closed" messages at LogLevel >=
error bz3378; ok dtucker@ OpenBSD-Commit-ID: d5bf457d5d2eb927b81d0663f45248a31028265c
Diffstat (limited to 'mux.c')
-rw-r--r--mux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mux.c b/mux.c
index 4c0eb424..176f035c 100644
--- a/mux.c
+++ b/mux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mux.c,v 1.91 2021/07/23 04:00:59 djm Exp $ */
+/* $OpenBSD: mux.c,v 1.92 2022/01/11 01:26:47 djm Exp $ */
/*
* Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org>
*
@@ -2037,7 +2037,7 @@ mux_client_request_session(int fd)
} else
debug2("Received exit status from master %d", exitval);
- if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
+ if (tty_flag && options.log_level >= SYSLOG_LEVEL_INFO)
fprintf(stderr, "Shared connection to %s closed.\r\n", host);
exit(exitval);