summaryrefslogtreecommitdiff
path: root/sbin/ipsecctl/parse.y
diff options
context:
space:
mode:
authorMarco Pfatschbacher <mpf@cvs.openbsd.org>2007-11-12 23:59:42 +0000
committerMarco Pfatschbacher <mpf@cvs.openbsd.org>2007-11-12 23:59:42 +0000
commitaa82c35307ac93f9f8516d4168a7cb0e7eaf56c4 (patch)
tree4c64e3b6fb9c0de041ee36807ace3f83cca007f0 /sbin/ipsecctl/parse.y
parenteb8064cb59bbaeb4315946b2f188364a7061bd29 (diff)
Remove space/tab compression function from lgetc() and replace
it with a simple filter in the yylex() loop. The compression in lgetc() didn't happen for quoted strings, thus creating a regression when tabs were used in variables. Some testing by todd@ and pyr@ OK deraadt@
Diffstat (limited to 'sbin/ipsecctl/parse.y')
-rw-r--r--sbin/ipsecctl/parse.y12
1 files changed, 2 insertions, 10 deletions
diff --git a/sbin/ipsecctl/parse.y b/sbin/ipsecctl/parse.y
index c826fa21686..a9bfec5bf17 100644
--- a/sbin/ipsecctl/parse.y
+++ b/sbin/ipsecctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.131 2007/10/22 16:35:33 pyr Exp $ */
+/* $OpenBSD: parse.y,v 1.132 2007/11/12 23:59:41 mpf Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -959,14 +959,6 @@ lgetc(int quotec)
yylval.lineno = file->lineno;
file->lineno++;
}
- if (c == '\t' || c == ' ') {
- /* Compress blanks to a single space. */
- do {
- c = getc(file->stream);
- } while (c == '\t' || c == ' ');
- ungetc(c, file->stream);
- c = ' ';
- }
while (c == EOF) {
if (popfile() == EOF)
@@ -1023,7 +1015,7 @@ yylex(void)
top:
p = buf;
- while ((c = lgetc(0)) == ' ')
+ while ((c = lgetc(0)) == ' ' || c == '\t')
; /* nothing */
yylval.lineno = file->lineno;