]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Fix an error message in pscp
authorSimon Tatham <anakin@pobox.com>
Mon, 21 Feb 2000 14:20:19 +0000 (14:20 +0000)
committerSimon Tatham <anakin@pobox.com>
Mon, 21 Feb 2000 14:20:19 +0000 (14:20 +0000)
[originally from svn r390]

scp.c

diff --git a/scp.c b/scp.c
index 3ea2c35382dd7bd64d3aac364994e9ab864400ec..f359c6e848c0e0cb590250b24177628ef3d8b5b1 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;
     }