upstream: fix debug statement

OpenBSD-Commit-ID: 42c6edeeda5ce88b51a20d88c93be3729ce6b916
This commit is contained in:
djm@openbsd.org 2020-04-03 04:06:26 +00:00 committed by Damien Miller
parent 7b4d8999f2
commit ebd29e9012
1 changed files with 2 additions and 2 deletions

4
ssh.c
View File

@ -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
@ -1679,7 +1679,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 {