diff options
author | tjr <tjr@FreeBSD.org> | 2005-10-01 05:54:39 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2005-10-01 05:54:39 +0000 |
commit | 624d486b893f0249dfbb70e698cbfcdac8bfd018 (patch) | |
tree | 7e27c5a51d0a7b2cd7bda7baeccf3a054bfaec93 /contrib | |
parent | 408469d9590cda7a3445b827a7dc179f3b9d8c49 (diff) | |
download | FreeBSD-src-624d486b893f0249dfbb70e698cbfcdac8bfd018.zip FreeBSD-src-624d486b893f0249dfbb70e698cbfcdac8bfd018.tar.gz |
Merge from old copypass.c rev 1.3: If we must yell at the user than a
file cannot be linked into place when requested (not required) to do it,
reassure them that cpio is still intelligent enough that it will perform
a full copy instead.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/cpio/src/copypass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cpio/src/copypass.c b/contrib/cpio/src/copypass.c index 0827f9c..6cef1e8 100644 --- a/contrib/cpio/src/copypass.c +++ b/contrib/cpio/src/copypass.c @@ -469,7 +469,7 @@ link_to_name (char *link_name, char *link_target) } else if (link_flag) { - error (0, errno, _("cannot link %s to %s"), + error (0, errno, _("cannot link %s to %s (will copy instead)"), link_target, link_name); } return res; |