diff options
Diffstat (limited to 'usr.sbin/iscsictl/parse.y')
-rw-r--r-- | usr.sbin/iscsictl/parse.y | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/iscsictl/parse.y b/usr.sbin/iscsictl/parse.y index e86657fa633..7f695aa1907 100644 --- a/usr.sbin/iscsictl/parse.y +++ b/usr.sbin/iscsictl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.16 2018/09/07 07:35:31 miko Exp $ */ +/* $OpenBSD: parse.y,v 1.17 2018/11/01 00:18:44 sashan Exp $ */ /* * Copyright (c) 2010 David Gwynne <dlg@openbsd.org> @@ -554,7 +554,8 @@ top: } else if (c == '\\') { if ((next = lgetc(quotec)) == EOF) return (0); - if (next == quotec || c == ' ' || c == '\t') + if (next == quotec || next == ' ' || + next == '\t') c = next; else if (next == '\n') { file->lineno++; |