git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9a5f2b
)
support for comments (#) in the policy format
author
Daniel Kouřil
<kouril@ics.muni.cz>
Tue, 16 Mar 2010 17:00:35 +0000
(17:00 +0000)
committer
Daniel Kouřil
<kouril@ics.muni.cz>
Tue, 16 Mar 2010 17:00:35 +0000
(17:00 +0000)
org.glite.lb.server/src/policy_lex.l
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.server/src/policy_lex.l
b/org.glite.lb.server/src/policy_lex.l
index
50592cc
..
ffc075c
100644
(file)
--- a/
org.glite.lb.server/src/policy_lex.l
+++ b/
org.glite.lb.server/src/policy_lex.l
@@
-31,6
+31,7
@@
permit { return PERMIT; }
}
[={}] { return *yytext; }
"\n" { lineno++; }
+#[^\n]*\n ;
[ \t]+ ;
. { return *yytext; }
%%