summaryrefslogtreecommitdiffstats
path: root/sshconnect.c
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2013-05-17 08:55:26 +0000
committerdes <des@FreeBSD.org>2013-05-17 08:55:26 +0000
commitce4282e0e95a9999373950b65afef4767f102c0a (patch)
treebbbe6a846456d8a2e82510f56d05ed52d1104e35 /sshconnect.c
parent52a388c911b2db4695ad0443466408085840e047 (diff)
downloadFreeBSD-src-ce4282e0e95a9999373950b65afef4767f102c0a.zip
FreeBSD-src-ce4282e0e95a9999373950b65afef4767f102c0a.tar.gz
Vendor import of OpenSSH 6.2p2.
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 07800a6..cf07112 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect.c,v 1.236 2012/09/14 16:51:34 markus Exp $ */
+/* $OpenBSD: sshconnect.c,v 1.237 2013/02/22 19:13:56 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -89,6 +89,13 @@ ssh_proxy_connect(const char *host, u_short port, const char *proxy_command)
pid_t pid;
char *shell, strport[NI_MAXSERV];
+ if (!strcmp(proxy_command, "-")) {
+ packet_set_connection(STDIN_FILENO, STDOUT_FILENO);
+ packet_set_timeout(options.server_alive_interval,
+ options.server_alive_count_max);
+ return 0;
+ }
+
if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
shell = _PATH_BSHELL;
OpenPOWER on IntegriCloud