From 658fb1759d5c311e62159a2aa03b581830217f13 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 22 Jan 2011 14:46:37 +0000 Subject: [PATCH] fish: Fix typo in error message (copy-in should be copy-out). (cherry picked from commit e8ab05b12c6b1c13278e549883efd47900a4bac1) --- fish/copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 1.8.3.1