1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Start logging earlier in PSCP and PSFTP.

We were missing log messages about the start of the network connection.
This commit is contained in:
Jacob Nevins
2017-02-11 00:23:36 +00:00
parent 18f98bae21
commit 415224eab5
2 changed files with 6 additions and 4 deletions

5
pscp.c
View File

@ -514,6 +514,9 @@ static void do_cmd(char *host, char *user, char *cmd)
back = &ssh_backend;
logctx = log_init(NULL, conf);
console_provide_logctx(logctx);
err = back->init(NULL, &backhandle, conf,
conf_get_str(conf, CONF_host),
conf_get_int(conf, CONF_port),
@ -521,9 +524,7 @@ static void do_cmd(char *host, char *user, char *cmd)
conf_get_int(conf, CONF_tcp_keepalives));
if (err != NULL)
bump("ssh_init: %s", err);
logctx = log_init(NULL, conf);
back->provide_logctx(backhandle, logctx);
console_provide_logctx(logctx);
ssh_scp_init();
if (verbose && realhost != NULL && errs == 0)
tell_user(stderr, "Connected to %s", realhost);