git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78f1405
)
fish: Fix typo in error message (copy-in should be copy-out).
author
Richard W.M. Jones
<rjones@redhat.com>
Sat, 22 Jan 2011 14:46:37 +0000
(14:46 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Sat, 22 Jan 2011 14:46:37 +0000
(14:46 +0000)
fish/copy.c
patch
|
blob
|
history
diff --git
a/fish/copy.c
b/fish/copy.c
index
9f3f3df
..
2aa7c0a
100644
(file)
--- 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;
}