fish: Fix typo in error message (copy-in should be copy-out).
[libguestfs.git] / 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;
   }