From 87a0ffae7168f3b05a9d0e1cccc51406e10e34bd Mon Sep 17 00:00:00 2001 From: djm Date: Mon, 8 Jul 2024 03:04:34 +0000 Subject: [PATCH] don't need return at end of void function --- usr.bin/ssh/sshd-session.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/usr.bin/ssh/sshd-session.c b/usr.bin/ssh/sshd-session.c index 54b7a8f71e6..4e7841cd50c 100644 --- a/usr.bin/ssh/sshd-session.c +++ b/usr.bin/ssh/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: @@ -765,7 +765,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; } /* Set the routing domain for this process */ -- 2.20.1