From: ben Date: Sun, 30 Sep 2007 14:14:29 +0000 (+0000) Subject: Set cfg.ssh_simple if there are no forwardings. X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/61f62bb301d0b6d49d1fea71513eb051a901e1b1 Set cfg.ssh_simple if there are no forwardings. git-svn-id: svn://svn.tartarus.org/sgt/putty@7750 cda61777-01e9-0310-a592-d414129be87e --- 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);