fish: Fix typo in error message (copy-in should be copy-out).
authorRichard W.M. Jones <rjones@redhat.com>
Sat, 22 Jan 2011 14:46:37 +0000 (14:46 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Sat, 22 Jan 2011 14:46:37 +0000 (14:46 +0000)
fish/copy.c

index 9f3f3df..2aa7c0a 100644 (file)
@@ -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;
   }