From: Richard W.M. Jones Date: Sat, 22 Jan 2011 14:46:37 +0000 (+0000) Subject: fish: Fix typo in error message (copy-in should be copy-out). X-Git-Tag: 1.8.2~26 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=658fb1759d5c311e62159a2aa03b581830217f13;p=libguestfs.git fish: Fix typo in error message (copy-in should be copy-out). (cherry picked from commit e8ab05b12c6b1c13278e549883efd47900a4bac1) --- diff --git a/fish/copy.c b/fish/copy.c index 9f3f3df..2aa7c0a 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; }