1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Fix an error message in pscp

[originally from svn r390]
This commit is contained in:
Simon Tatham 2000-02-21 14:20:19 +00:00
parent bd4b8c1285
commit ee038a773e

2
scp.c
View File

@ -310,7 +310,7 @@ static void source(char *src)
f = CreateFile(src, GENERIC_READ, FILE_SHARE_READ, NULL,
OPEN_EXISTING, 0, 0);
if (f == INVALID_HANDLE_VALUE) {
run_err("%s: Cannot open file");
run_err("%s: Cannot open file", src);
return;
}