upstream: bring back debug() removed in rev 1.74; noted by pradeep

kumar

OpenBSD-Commit-ID: 8d134d22ab25979078a3b48d058557d49c402e65
This commit is contained in:
markus@openbsd.org 2020-04-30 17:12:20 +00:00 committed by Damien Miller
parent ea14103ce9
commit 5de21c82e1
1 changed files with 2 additions and 1 deletions

3
mux.c
View File

@ -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)