From 61f62bb301d0b6d49d1fea71513eb051a901e1b1 Mon Sep 17 00:00:00 2001 From: ben Date: Sun, 30 Sep 2007 14:14:29 +0000 Subject: [PATCH] Set cfg.ssh_simple if there are no forwardings. git-svn-id: svn://svn.tartarus.org/sgt/putty@7750 cda61777-01e9-0310-a592-d414129be87e --- unix/uxplink.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/unix/uxplink.c b/unix/uxplink.c index 9d5f0016..9867df2e 100644 --- a/unix/uxplink.c +++ b/unix/uxplink.c @@ -873,6 +873,14 @@ int main(int argc, char **argv) uxsel_init(); /* + * Unix Plink doesn't provide any way to add forwardings after the + * connection is set up, so if there are none now, we can safely set + * the "simple" flag. + */ + if (cfg.protocol == PROT_SSH && !cfg.x11_forward && !cfg.agentfwd && + cfg.portfwd[0] == '\0' && cfg.portfwd[1] == '\0') + cfg.ssh_simple = TRUE; + /* * Start up the connection. */ logctx = log_init(NULL, &cfg); -- 2.11.0