summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fish/copy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fish/copy.c b/fish/copy.c
index 9f3f3df6..2aa7c0a1 100644
--- a/fish/copy.c
+++ b/fish/copy.c
@@ -192,7 +192,7 @@ run_copy_out (const char *cmd, size_t argc, char *argv[])
struct stat statbuf;
if (stat (local, &statbuf) == -1 ||
! (S_ISDIR (statbuf.st_mode))) {
- fprintf (stderr, _("copy-in: target '%s' is not a directory\n"), local);
+ fprintf (stderr, _("copy-out: target '%s' is not a directory\n"), local);
return -1;
}