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

(-)ssh.c (-1 / +1 lines)
Lines 607-613 main(int ac, char **av) Link Here
607
		tty_flag = 1;
607
		tty_flag = 1;
608
608
609
	/* Force no tty */
609
	/* Force no tty */
610
	if (no_tty_flag)
610
	if (no_tty_flag || muxclient_command != 0)
611
		tty_flag = 0;
611
		tty_flag = 0;
612
	/* Do not allocate a tty if stdin is not a tty. */
612
	/* Do not allocate a tty if stdin is not a tty. */
613
	if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
613
	if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {

Return to bug 1746