summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh.c
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2020-04-03 04:06:26 +0000
committerdjm <djm@openbsd.org>2020-04-03 04:06:26 +0000
commitf7df5ee43bfc571cd4615511eb5e34ff14e6e707 (patch)
tree4c94fc71e7c30bcc007ed7518620eb40425dbc2b /usr.bin/ssh/ssh.c
parentthe tunnel-forwarding vs ExitOnForwardFailure fix that I committed (diff)
downloadwireguard-openbsd-f7df5ee43bfc571cd4615511eb5e34ff14e6e707.tar.xz
wireguard-openbsd-f7df5ee43bfc571cd4615511eb5e34ff14e6e707.zip
fix debug statement
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r--usr.bin/ssh/ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index 8a44d3dd877..cc3b0cafafa 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh.c,v 1.524 2020/04/03 04:03:51 djm Exp $ */
+/* $OpenBSD: ssh.c,v 1.525 2020/04/03 04:06:26 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1652,7 +1652,7 @@ forwarding_success(void)
if (forward_confirms_pending == -1)
return;
if (--forward_confirms_pending == 0) {
- debug("%s: all expected forwarding replies received");
+ debug("%s: all expected forwarding replies received", __func__);
if (fork_after_authentication_flag)
fork_postauth();
} else {