Fix an error message in pscp
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 21 Feb 2000 14:20:19 +0000 (14:20 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Mon, 21 Feb 2000 14:20:19 +0000 (14:20 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@390 cda61777-01e9-0310-a592-d414129be87e

scp.c

diff --git a/scp.c b/scp.c
index 3ea2c35..f359c6e 100644 (file)
--- 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;
     }