summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ldpd
diff options
context:
space:
mode:
authorsashan <sashan@openbsd.org>2018-11-01 00:18:44 +0000
committersashan <sashan@openbsd.org>2018-11-01 00:18:44 +0000
commita1533359581417afa5cac550127d8aa8920ae72a (patch)
tree35d3e162fa800af4d75486f412baec0aaa0ff490 /usr.sbin/ldpd
parentAdd comment to remind people to bump libc++. (diff)
downloadwireguard-openbsd-a1533359581417afa5cac550127d8aa8920ae72a.tar.xz
wireguard-openbsd-a1533359581417afa5cac550127d8aa8920ae72a.zip
- odd condition/test in PF lexer
(and other lexers too) This commit rectifies earlier change: in the lex... even inside quotes, a \ followed by space or tab should expand to space or tab, and a \ followed by newline should be ignored (as a line continuation). compatible with the needs of hoststated (which has the most strict quoted string requirements), and ifstated (where one commonly does line continuations in strings). OK deraadt@, OK millert@
Diffstat (limited to 'usr.sbin/ldpd')
-rw-r--r--usr.sbin/ldpd/parse.y5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/ldpd/parse.y b/usr.sbin/ldpd/parse.y
index 5197bb0c368..bfcca083172 100644
--- a/usr.sbin/ldpd/parse.y
+++ b/usr.sbin/ldpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.66 2018/09/07 07:35:31 miko Exp $ */
+/* $OpenBSD: parse.y,v 1.67 2018/11/01 00:18:44 sashan Exp $ */
/*
* Copyright (c) 2013, 2015, 2016 Renato Westphal <renato@openbsd.org>
@@ -1042,7 +1042,8 @@ yylex(void)
} 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++;