aboutsummaryrefslogtreecommitdiffstats
path: root/src/cfg_file.l
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2009-03-31 12:58:38 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2009-03-31 12:58:38 +0400
commit7408d6fd0fc4652ffbc0fa8b13cabf455f8ed0c1 (patch)
tree9304ffece761ce0a6e9561dcd3480b783d402859 /src/cfg_file.l
parented1438755d0d0399a06ba3824f5839ae287bbf69 (diff)
downloadrspamd-7408d6fd0fc4652ffbc0fa8b13cabf455f8ed0c1.tar.gz
rspamd-7408d6fd0fc4652ffbc0fa8b13cabf455f8ed0c1.zip
* Fix error in regexp processing
Diffstat (limited to 'src/cfg_file.l')
-rw-r--r--src/cfg_file.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cfg_file.l b/src/cfg_file.l
index 8d347409f..d0efa5c2f 100644
--- a/src/cfg_file.l
+++ b/src/cfg_file.l
@@ -161,7 +161,7 @@ yes|YES|no|NO|[yY]|[nN] yylval.flag=parse_flag(yytext); return FLAG;
<lua>[ \t]+ /* ignore whitespace */;
<lua>[ \t]*#.* /* ignore comments */;
<lua>^.endlua$ BEGIN(INITIAL);
-<lua>.* add_luabuf(yytext);
+<lua>.* add_luabuf(yytext); return LUACODE;
%%
/*