summaryrefslogtreecommitdiffstats
path: root/usr.sbin/rad/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/rad/parse.y')
-rw-r--r--usr.sbin/rad/parse.y5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/rad/parse.y b/usr.sbin/rad/parse.y
index 8aedd2a499c..01fac688fcb 100644
--- a/usr.sbin/rad/parse.y
+++ b/usr.sbin/rad/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.10 2018/09/16 18:58:36 bluhm Exp $ */
+/* $OpenBSD: parse.y,v 1.11 2018/11/01 00:18:44 sashan Exp $ */
/*
* Copyright (c) 2018 Florian Obser <florian@openbsd.org>
@@ -626,7 +626,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++;