- djm@cvs.openbsd.org 2011/05/06 21:38:58
[ssh.c] fix dropping from previous diff
This commit is contained in:
parent
21771e22d3
commit
a6bbbe4658
|
@ -36,6 +36,9 @@
|
||||||
[clientloop.c mux.c readconf.c readconf.h ssh.c ssh_config.5]
|
[clientloop.c mux.c readconf.c readconf.h ssh.c ssh_config.5]
|
||||||
Add a RequestTTY ssh_config option to allow configuration-based
|
Add a RequestTTY ssh_config option to allow configuration-based
|
||||||
control over tty allocation (like -t/-T); ok markus@
|
control over tty allocation (like -t/-T); ok markus@
|
||||||
|
- djm@cvs.openbsd.org 2011/05/06 21:38:58
|
||||||
|
[ssh.c]
|
||||||
|
fix dropping from previous diff
|
||||||
|
|
||||||
20110510
|
20110510
|
||||||
- (dtucker) [openbsd-compat/openssl-compat.{c,h}] Bug #1882: fix
|
- (dtucker) [openbsd-compat/openssl-compat.{c,h}] Bug #1882: fix
|
||||||
|
|
3
ssh.c
3
ssh.c
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: ssh.c,v 1.359 2011/05/06 21:34:32 djm Exp $ */
|
/* $OpenBSD: ssh.c,v 1.360 2011/05/06 21:38:58 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@ -1401,7 +1401,6 @@ ssh_session2(void)
|
||||||
otty_flag = tty_flag;
|
otty_flag = tty_flag;
|
||||||
stdin_null_flag = 1;
|
stdin_null_flag = 1;
|
||||||
no_shell_flag = 1;
|
no_shell_flag = 1;
|
||||||
options.request_tty == REQUEST_TTY_NO;
|
|
||||||
tty_flag = 0;
|
tty_flag = 0;
|
||||||
if (!fork_after_authentication_flag)
|
if (!fork_after_authentication_flag)
|
||||||
need_controlpersist_detach = 1;
|
need_controlpersist_detach = 1;
|
||||||
|
|
Loading…
Reference in New Issue