svn commit: r232201 - head/usr.bin/xargs

Jilles Tjoelker jilles at FreeBSD.org
Sun Feb 26 23:06:30 UTC 2012


Author: jilles
Date: Sun Feb 26 23:06:30 2012
New Revision: 232201
URL: http://svn.freebsd.org/changeset/base/232201

Log:
  xargs: Remove an unclear comment that only tried to repeat what the code did
  
  Reported by:	bde

Modified:
  head/usr.bin/xargs/xargs.c

Modified: head/usr.bin/xargs/xargs.c
==============================================================================
--- head/usr.bin/xargs/xargs.c	Sun Feb 26 22:09:21 2012	(r232200)
+++ head/usr.bin/xargs/xargs.c	Sun Feb 26 23:06:30 2012	(r232201)
@@ -604,10 +604,6 @@ waitchildren(const char *name, int waita
 			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));


More information about the svn-src-all mailing list