1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-18 19:41:01 -05:00

The logging module now contains a local copy of cfg too.

[originally from svn r2566]
This commit is contained in:
Simon Tatham
2003-01-12 15:10:27 +00:00
parent ac2367bc72
commit 2d469ba497
8 changed files with 45 additions and 25 deletions

2
scp.c
View File

@ -577,7 +577,7 @@ static void do_cmd(char *host, char *user, char *cmd)
err = back->init(NULL, &backhandle, &cfg, cfg.host, cfg.port, &realhost,0);
if (err != NULL)
bump("ssh_init: %s", err);
logctx = log_init(NULL);
logctx = log_init(NULL, &cfg);
back->provide_logctx(backhandle, logctx);
ssh_scp_init();
if (verbose && realhost != NULL)