summaryrefslogtreecommitdiffstats
path: root/fish
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-01-22 14:46:37 +0000
committerRichard W.M. Jones <rjones@redhat.com>2011-01-22 14:46:37 +0000
commite8ab05b12c6b1c13278e549883efd47900a4bac1 (patch)
treeaafef8e944a3eae2912def58fc9b7418f4ddaf90 /fish
parent78f1405de05ef1f2efebafd8245658d1707e59ef (diff)
downloadlibguestfs-e8ab05b12c6b1c13278e549883efd47900a4bac1.tar.gz
libguestfs-e8ab05b12c6b1c13278e549883efd47900a4bac1.tar.xz
libguestfs-e8ab05b12c6b1c13278e549883efd47900a4bac1.zip
fish: Fix typo in error message (copy-in should be copy-out).
Diffstat (limited to 'fish')
-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;
}