diff options
author | Jilles Tjoelker <jilles@FreeBSD.org> | 2012-02-26 23:06:30 +0000 |
---|---|---|
committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2012-02-26 23:06:30 +0000 |
commit | 6e795141b2dc5951056597aaf4b6d63eff24db5e (patch) | |
tree | e7ac21755a22a0bc5bb1ce9a38c0663e4ed7775d /usr.bin/xargs | |
parent | bfd258f74e09bc2238f2b2248e863ca789a84d10 (diff) | |
download | src-6e795141b2dc5951056597aaf4b6d63eff24db5e.tar.gz src-6e795141b2dc5951056597aaf4b6d63eff24db5e.zip |
Notes
Diffstat (limited to 'usr.bin/xargs')
-rw-r--r-- | usr.bin/xargs/xargs.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c index 7011810075ea..d102ce602496 100644 --- a/usr.bin/xargs/xargs.c +++ b/usr.bin/xargs/xargs.c @@ -604,10 +604,6 @@ waitchildren(const char *name, int waitall) errno = childerr; err(errno == ENOENT ? 127 : 126, "%s", name); } - /* - * If utility signaled or exited with a value of 255, - * exit 1-125. - */ if (WIFSIGNALED(status)) errx(1, "%s: terminated with signal %d; aborting", name, WTERMSIG(status)); |