]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: don't need return at end of void function
authordjm@openbsd.org <djm@openbsd.org>
Mon, 8 Jul 2024 03:04:34 +0000 (03:04 +0000)
committerDamien Miller <djm@mindrot.org>
Mon, 8 Jul 2024 03:05:41 +0000 (13:05 +1000)
OpenBSD-Commit-ID: 42d322d37f13aa075ae7b1ad9eef591e20b89717

sshd-session.c

index fe6ae7f326ee1a33a5c56b1f7d8d884713455546..52e7bd82d194e386daa0dbc5c46b6542149d4af4 100644 (file)
@@ -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 */
 }