summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--mux.c5
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 760772d59..75d9a0863 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
120111219
2 - OpenBSD CVS Sync
3 - djm@cvs.openbsd.org 2011/12/02 00:41:56
4 [mux.c]
5 fix bz#1948: ssh -f doesn't fork for multiplexed connection.
6 ok dtucker@
7
120111125 820111125
2 - OpenBSD CVS Sync 9 - OpenBSD CVS Sync
3 - oga@cvs.openbsd.org 2011/11/16 12:24:28 10 - oga@cvs.openbsd.org 2011/11/16 12:24:28
diff --git a/mux.c b/mux.c
index 52aec62b0..cbc04be71 100644
--- a/mux.c
+++ b/mux.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: mux.c,v 1.31 2011/09/23 07:45:05 markus Exp $ */ 1/* $OpenBSD: mux.c,v 1.32 2011/12/02 00:41:56 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -95,6 +95,7 @@ extern Buffer command;
95extern volatile sig_atomic_t quit_pending; 95extern volatile sig_atomic_t quit_pending;
96extern char *stdio_forward_host; 96extern char *stdio_forward_host;
97extern int stdio_forward_port; 97extern int stdio_forward_port;
98extern int fork_after_authentication_flag;
98 99
99/* Context for session open confirmation callback */ 100/* Context for session open confirmation callback */
100struct mux_session_confirm_ctx { 101struct mux_session_confirm_ctx {
@@ -1802,6 +1803,8 @@ mux_client_request_session(int fd)
1802 if (tty_flag) 1803 if (tty_flag)
1803 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE); 1804 enter_raw_mode(options.request_tty == REQUEST_TTY_FORCE);
1804 1805
1806 if (fork_after_authentication_flag)
1807 daemon(1, 1);
1805 /* 1808 /*
1806 * Stick around until the controlee closes the client_fd. 1809 * Stick around until the controlee closes the client_fd.
1807 * Before it does, it is expected to write an exit message. 1810 * Before it does, it is expected to write an exit message.