diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-03-17 11:06:40 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-03-17 11:06:40 +0000 |
| commit | 0222d5bc2d4f8ee4b5f985c990d7ecad73904f6d (patch) | |
| tree | c86e7e662c888cd06b742a637a24b95d03d90691 | |
| parent | 5d8fdf31ddd8c7c04fae6ee3bda1911c93ee3d4a (diff) | |
Notes
| -rw-r--r-- | usr.bin/xinstall/xinstall.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c index 41a3bf173516..441c108413c6 100644 --- a/usr.bin/xinstall/xinstall.c +++ b/usr.bin/xinstall/xinstall.c @@ -169,8 +169,10 @@ main(int argc, char *argv[]) argv += optind; /* some options make no sense when creating directories */ - if (dostrip && dodir) + if (dostrip && dodir) { + warnx("-d and -s may not be specified together"); usage(); + } /* must have at least two arguments, except when creating directories */ if (argc == 0 || (argc == 1 && !dodir)) @@ -213,8 +215,10 @@ main(int argc, char *argv[]) } /* can't do file1 file2 directory/file */ - if (argc != 2) + if (argc != 2) { + warnx("wrong number or types of arguments"); usage(); + } if (!no_target) { if (stat(*argv, &from_sb)) |
