summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ssh.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e3b6da975..d90bf37c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,6 +21,9 @@
21 - markus@cvs.openbsd.org 2010/09/02 16:07:25 21 - markus@cvs.openbsd.org 2010/09/02 16:07:25
22 [ssh-keygen.c] 22 [ssh-keygen.c]
23 permit -b 256, 384 or 521 as key size for ECDSA; ok djm@ 23 permit -b 256, 384 or 521 as key size for ECDSA; ok djm@
24 - markus@cvs.openbsd.org 2010/09/02 16:08:39
25 [ssh.c]
26 unbreak ControlPersist=yes for ControlMaster=yes; ok djm@
24 27
2520100831 2820100831
26 - OpenBSD CVS Sync 29 - OpenBSD CVS Sync
diff --git a/ssh.c b/ssh.c
index e5b643258..51c68d7da 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.350 2010/08/31 12:33:38 djm Exp $ */ 1/* $OpenBSD: ssh.c,v 1.351 2010/09/02 16:08:39 markus Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -936,6 +936,7 @@ control_persist_detach(void)
936 tty_flag = otty_flag; 936 tty_flag = otty_flag;
937 close(muxserver_sock); 937 close(muxserver_sock);
938 muxserver_sock = -1; 938 muxserver_sock = -1;
939 options.control_master = SSHCTL_MASTER_NO;
939 muxclient(options.control_path); 940 muxclient(options.control_path);
940 /* muxclient() doesn't return on success. */ 941 /* muxclient() doesn't return on success. */
941 fatal("Failed to connect to new control master"); 942 fatal("Failed to connect to new control master");