From: djm@openbsd.org Date: Mon, 8 Jul 2024 03:04:34 +0000 (+0000) Subject: upstream: don't need return at end of void function X-Git-Tag: V_9_9_P1~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2b78bb8f149d6b4d1f62c21aa1f06995dccf4ce;p=thirdparty%2Fopenssh-portable.git upstream: don't need return at end of void function OpenBSD-Commit-ID: 42d322d37f13aa075ae7b1ad9eef591e20b89717 --- diff --git a/sshd-session.c b/sshd-session.c index fe6ae7f32..52e7bd82d 100644 --- a/sshd-session.c +++ b/sshd-session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshd-session.c,v 1.4 2024/06/26 23:16:52 deraadt Exp $ */ +/* $OpenBSD: sshd-session.c,v 1.5 2024/07/08 03:04:34 djm Exp $ */ /* * SSH2 implementation: * Privilege Separation: @@ -817,7 +817,6 @@ check_ip_options(struct ssh *ssh) fatal("Connection from %.100s port %d with IP opts: %.800s", ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), text); } - return; #endif /* IP_OPTIONS */ }