diff options
author | djm@openbsd.org <djm@openbsd.org> | 2021-07-23 06:00:59 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-07-23 06:07:19 +0200 |
commit | e0c5088f1c96a145eb6ea1dee438010da78f9ef5 (patch) | |
tree | bf1fe4b7bca8439d4523466cb6d879581115a5ee /clientloop.c | |
parent | upstream: make authorized_keys environment="..." directives (diff) | |
download | openssh-e0c5088f1c96a145eb6ea1dee438010da78f9ef5.tar.xz openssh-e0c5088f1c96a145eb6ea1dee438010da78f9ef5.zip |
upstream: Add a StdinNull directive to ssh_config(5) that allows
the config file to do the same thing as -n does on the ssh(1) commandline.
Patch from Volker Diels-Grabsch via GHPR231; ok dtucker
OpenBSD-Commit-ID: 66ddf3f15c76796d4dcd22ff464aed1edd62468e
Diffstat (limited to 'clientloop.c')
-rw-r--r-- | clientloop.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/clientloop.c b/clientloop.c index 0b8a3fd38..7eb6b63bd 100644 --- a/clientloop.c +++ b/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.367 2021/07/16 09:00:23 djm Exp $ */ +/* $OpenBSD: clientloop.c,v 1.368 2021/07/23 04:00:59 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -115,9 +115,6 @@ /* import options */ extern Options options; -/* Flag indicating that stdin should be redirected from /dev/null. */ -extern int stdin_null_flag; - /* Flag indicating that ssh should daemonise after authentication is complete */ extern int fork_after_authentication_flag; |