diff options
author | djm@openbsd.org <djm@openbsd.org> | 2024-07-08 05:04:34 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2024-07-08 05:05:41 +0200 |
commit | f2b78bb8f149d6b4d1f62c21aa1f06995dccf4ce (patch) | |
tree | c8188ab41b7089024006eae94632110eabd99342 /sshd-session.c | |
parent | upstream: fix grammar: "a pattern lists" -> "one or more pattern (diff) | |
download | openssh-f2b78bb8f149d6b4d1f62c21aa1f06995dccf4ce.tar.xz openssh-f2b78bb8f149d6b4d1f62c21aa1f06995dccf4ce.zip |
upstream: don't need return at end of void function
OpenBSD-Commit-ID: 42d322d37f13aa075ae7b1ad9eef591e20b89717
Diffstat (limited to 'sshd-session.c')
-rw-r--r-- | sshd-session.c | 3 |
1 files changed, 1 insertions, 2 deletions
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 */ } |