mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Typo in patch application.
PR: kern/9459 Submitted by: "Daniel C. Sobral" <dcs@newsguy.com>
This commit is contained in:
parent
90b2fe743a
commit
4e24cd8e44
1 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@
|
|||
* Jordan K. Hubbard
|
||||
* 29 August 1998
|
||||
*
|
||||
* $Id: interp_parse.c,v 1.4 1998/09/17 23:52:02 msmith Exp $
|
||||
* $Id: interp_parse.c,v 1.5 1999/01/10 05:08:12 msmith Exp $
|
||||
*
|
||||
* The meat of the simple parser.
|
||||
*/
|
||||
|
|
@ -103,7 +103,7 @@ parse(int *argc, char ***argv, char *str)
|
|||
if ((*p == '\\') && p[1]) {
|
||||
p++;
|
||||
PARSE_FAIL(i == (PARSE_BUFSIZE - 1));
|
||||
buf[i] = *p++;
|
||||
buf[i++] = *p++;
|
||||
} else if (isquote(*p)) {
|
||||
quote = quote ? 0 : *p;
|
||||
++p;
|
||||
|
|
|
|||
Loading…
Reference in a new issue