diff options
| author | dholland <dholland@NetBSD.org> | 2011-03-26 21:45:48 +0000 |
|---|---|---|
| committer | dholland <dholland@NetBSD.org> | 2011-03-26 21:45:48 +0000 |
| commit | 16f69791727d3e187aed67e1f6daa8fa89f6e313 (patch) | |
| tree | 0cfee09570e2b48a90300ec42ed4dd29bec27837 /usr.bin/patch | |
| parent | 494650a283f7861545634c208a211fc2bb5024a5 (diff) | |
Exit with EXIT_FAILURE for invalid arguments. PR 43517.
Diffstat (limited to 'usr.bin/patch')
| -rw-r--r-- | usr.bin/patch/patch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/patch/patch.c b/usr.bin/patch/patch.c index 072a2e8888e..c3b89a3a814 100644 --- a/usr.bin/patch/patch.c +++ b/usr.bin/patch/patch.c @@ -1,7 +1,7 @@ /* * $OpenBSD: patch.c,v 1.45 2007/04/18 21:52:24 sobrado Exp $ * $DragonFly: src/usr.bin/patch/patch.c,v 1.10 2008/08/10 23:39:56 joerg Exp $ - * $NetBSD: patch.c,v 1.27 2008/09/19 18:33:34 joerg Exp $ + * $NetBSD: patch.c,v 1.28 2011/03/26 21:45:48 dholland Exp $ */ /* @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: patch.c,v 1.27 2008/09/19 18:33:34 joerg Exp $"); +__RCSID("$NetBSD: patch.c,v 1.28 2011/03/26 21:45:48 dholland Exp $"); #include <sys/types.h> #include <sys/stat.h> @@ -623,7 +623,7 @@ usage(void) " [-r rej-name] [-V t | nil | never] [-x number] [-z backup-ext]\n" " [--posix] [origfile [patchfile]]\n" " patch <patchfile\n"); - my_exit(EXIT_SUCCESS); + my_exit(EXIT_FAILURE); } /* |
