summaryrefslogtreecommitdiffstats
path: root/usr.bin/xargs
diff options
context:
space:
mode:
authorjmallett <jmallett@FreeBSD.org>2002-05-05 05:15:16 +0000
committerjmallett <jmallett@FreeBSD.org>2002-05-05 05:15:16 +0000
commit4565d6d2ab8be7f6f88d3fdf33c265100474c080 (patch)
tree6b8a0f225bd325513472b5c6a83386702cdf83c6 /usr.bin/xargs
parent31ade1b13e34b70c8140b0bd3106e64b0ea42def (diff)
downloadFreeBSD-src-4565d6d2ab8be7f6f88d3fdf33c265100474c080.zip
FreeBSD-src-4565d6d2ab8be7f6f88d3fdf33c265100474c080.tar.gz
Fix a typo.
Submitted by: Carl Schmidt <cschmidt@slackerbsd.org> Wrap an obscenely long line while I'm here.
Diffstat (limited to 'usr.bin/xargs')
-rw-r--r--usr.bin/xargs/xargs.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c
index 790eea6..06c8736 100644
--- a/usr.bin/xargs/xargs.c
+++ b/usr.bin/xargs/xargs.c
@@ -283,7 +283,7 @@ arg2:
curlen++;
/*
* Allocate enough to hold what we will
- * be holding in a secont, and to append
+ * be holding in a second, and to append
* a space next time through, if we have
* to.
*/
@@ -305,7 +305,8 @@ arg2:
* of input lines, as specified by -L is the same as
* maxing out on arguments.
*/
- if (xp == exp || p > ebp || ch == EOF || (Lflag <= count && xflag) || foundeof) {
+ if (xp == exp || p > ebp || ch == EOF ||
+ (Lflag <= count && xflag) || foundeof) {
if (xflag && xp != exp && p > ebp)
errx(1, "insufficient space for arguments");
if (jfound) {
OpenPOWER on IntegriCloud