diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2003-04-27 19:55:33 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2003-04-27 19:55:33 +0200 |
commit | 93b6b776ad34ea49f18d5ab380cc83ff5ef22d8f (patch) | |
tree | e95fb3790f3b1000cbe279f800b3b07483dc09f3 | |
parent | - (djm) Bug #539: Specify creation mode with O_CREAT for lastlog. Report (diff) | |
download | openssh-93b6b776ad34ea49f18d5ab380cc83ff5ef22d8f.tar.xz openssh-93b6b776ad34ea49f18d5ab380cc83ff5ef22d8f.zip |
- (bal) Bug #541: return; was dropped by mistake. Reported by
furrier@iglou.com
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | packet.c | 1 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +20030427 + - (bal) Bug #541: return; was dropped by mistake. Reported by + furrier@iglou.com + 20030409 - (djm) Bug #539: Specify creation mode with O_CREAT for lastlog. Report from matth@eecs.berkeley.edu @@ -1337,4 +1341,4 @@ save auth method before monitor_reset_key_state(); bugzilla bug #284; ok provos@ -$Id: ChangeLog,v 1.2658 2003/04/09 11:12:11 djm Exp $ +$Id: ChangeLog,v 1.2659 2003/04/27 17:55:33 mouring Exp $ @@ -1429,6 +1429,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) |