mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
Fix bug #284.
git-svn-id: file:///svn/unbound/trunk@1923 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
15e5041086
commit
c253c24202
3 changed files with 824 additions and 821 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
30 November 2009: Wouter
|
||||||
|
- bug#284: fix parse of # without end-of-line at end-of-file.
|
||||||
|
|
||||||
26 November 2009: Wouter
|
26 November 2009: Wouter
|
||||||
- updated ldns with release candidate for version 1.6.3.
|
- updated ldns with release candidate for version 1.6.3.
|
||||||
- tag for 1.4.0 release.
|
- tag for 1.4.0 release.
|
||||||
|
|
|
||||||
1639
util/configlexer.c
1639
util/configlexer.c
File diff suppressed because it is too large
Load diff
|
|
@ -123,7 +123,8 @@ SQANY [^\'\n\r\\]|\\.
|
||||||
%%
|
%%
|
||||||
<INITIAL,val>{SPACE}* {
|
<INITIAL,val>{SPACE}* {
|
||||||
LEXOUT(("SP ")); /* ignore */ }
|
LEXOUT(("SP ")); /* ignore */ }
|
||||||
<INITIAL,val>{SPACE}*{COMMENT}.*$ {
|
<INITIAL,val>{SPACE}*{COMMENT}.* {
|
||||||
|
/* note that flex makes the longest match and '.' is any but not nl */
|
||||||
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
|
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
|
||||||
server{COLON} { YDVAR(0, VAR_SERVER) }
|
server{COLON} { YDVAR(0, VAR_SERVER) }
|
||||||
num-threads{COLON} { YDVAR(1, VAR_NUM_THREADS) }
|
num-threads{COLON} { YDVAR(1, VAR_NUM_THREADS) }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue