Typo in patch application.

PR:		kern/9459
Submitted by:	"Daniel C. Sobral" <dcs@newsguy.com>
This commit is contained in:
Mike Smith 1999-01-13 08:11:41 +00:00
parent 90b2fe743a
commit 4e24cd8e44

View File

@ -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;