summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2020-04-30 17:12:20 +0000
committerDamien Miller <djm@mindrot.org>2020-05-01 13:13:29 +1000
commit5de21c82e1d806d3e401b5338371e354b2e0a66f (patch)
treee41531d86d5cf8b1a49a95c12838efe89e0792c2
parentea14103ce9a5e13492e805f7e9277516ff5a4273 (diff)
upstream: bring back debug() removed in rev 1.74; noted by pradeep
-rw-r--r--mux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mux.c b/mux.c
index 5efc849c..fb31ad44 100644
--- a/mux.c
+++ b/mux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mux.c,v 1.81 2020/01/23 07:10:22 dtucker Exp $ */
+/* $OpenBSD: mux.c,v 1.82 2020/04/30 17:12:20 markus Exp $ */
/*
* Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org>
*
@@ -1987,6 +1987,7 @@ mux_client_request_session(int fd)
case MUX_S_SESSION_OPENED:
if ((r = sshbuf_get_u32(m, &sid)) != 0)
fatal("%s: decode ID: %s", __func__, ssh_err(r));
+ debug("%s: master session id: %u", __func__, sid);
break;
case MUX_S_PERMISSION_DENIED:
if ((r = sshbuf_get_cstring(m, &e, NULL)) != 0)