View | Details | Raw Unified | Return to bug 3360
Collapse All | Expand All

(-)a/ssh.c (-1 / +2 lines)
Lines 1342-1348 main(int ac, char **av) Link Here
1342
1342
1343
	/* Force no tty */
1343
	/* Force no tty */
1344
	if (options.request_tty == REQUEST_TTY_NO ||
1344
	if (options.request_tty == REQUEST_TTY_NO ||
1345
	    (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
1345
	    (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY) ||
1346
	    options.session_type == SESSION_TYPE_NONE)
1346
		tty_flag = 0;
1347
		tty_flag = 0;
1347
	/* Do not allocate a tty if stdin is not a tty. */
1348
	/* Do not allocate a tty if stdin is not a tty. */
1348
	if ((!isatty(fileno(stdin)) || options.stdin_null) &&
1349
	if ((!isatty(fileno(stdin)) || options.stdin_null) &&

Return to bug 3360