From 486543a109b8b1ae0a893d3e96711de97c81a96c Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 21 Feb 2000 14:20:19 +0000 Subject: [PATCH] Fix an error message in pscp git-svn-id: svn://svn.tartarus.org/sgt/putty@390 cda61777-01e9-0310-a592-d414129be87e --- scp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scp.c b/scp.c index 3ea2c353..f359c6e8 100644 --- a/scp.c +++ b/scp.c @@ -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; } -- 2.11.0