From af8524a91e1528c2c3ab52a25c06afacbc581078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Tue, 24 Jun 2003 19:30:44 +0000 Subject: [PATCH] Add a "return" that was missing from 3.6.1p1. Since it's been fixed in the OpenSSH-portable CVS repo, I'm committing this on the vendor branch. --- crypto/openssh/packet.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/openssh/packet.c b/crypto/openssh/packet.c index 3e21df722a37..77860d626284 100644 --- a/crypto/openssh/packet.c +++ b/crypto/openssh/packet.c @@ -1344,6 +1344,7 @@ packet_set_interactive(int interactive) /* Only set socket options if using a socket. */ if (!packet_connection_is_on_socket()) + return; if (interactive) set_nodelay(connection_in); #if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)