aboutsummaryrefslogtreecommitdiff
path: root/bin/cp
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2007-12-26 08:32:20 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2007-12-26 08:32:20 +0000
commita76b9b6973268d413497713bccc3aba7c03a1869 (patch)
tree0bdf8b3a830063ac481489c0140e001057896ff5 /bin/cp
parent21262c099345155044f45b1891d52d87c42da7af (diff)
downloadsrc-a76b9b6973268d413497713bccc3aba7c03a1869.tar.gz
src-a76b9b6973268d413497713bccc3aba7c03a1869.zip
As suggested, replace earlier changed warnx() / exit() with an errx()
Submitted by: Peter Jeremy <peterjeremy@optushome.com.au>
Notes
Notes: svn path=/head/; revision=174912
Diffstat (limited to 'bin/cp')
-rw-r--r--bin/cp/cp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/cp/cp.c b/bin/cp/cp.c
index 44056058287f..823d93e00e08 100644
--- a/bin/cp/cp.c
+++ b/bin/cp/cp.c
@@ -210,10 +210,9 @@ main(int argc, char *argv[])
/*
* Case (1). Target is not a directory.
*/
- if (argc > 1) {
- warnx("Target is not a directory");
- exit(1);
- }
+ if (argc > 1)
+ errx(1, "%s is not a directory", to.p_path);
+
/*
* Need to detect the case:
* cp -R dir foo