mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
Fix a typo.
Submitted by: Carl Schmidt <cschmidt@slackerbsd.org> Wrap an obscenely long line while I'm here.
This commit is contained in:
parent
f5216b9a19
commit
5eb40323b0
1 changed files with 3 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue