]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Do not set file vars by default in lua ucl
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 19 Feb 2017 15:59:09 +0000 (15:59 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 19 Feb 2017 15:59:09 +0000 (15:59 +0000)
contrib/libucl/lua_ucl.c

index 965dcc9c130e980e4b07d30a429df2c1395e09f3..62b0652f564a31f49b93462bcad812a3705fc1f7 100644 (file)
@@ -29,7 +29,6 @@
 #include "ucl_internal.h"
 #include "lua_ucl.h"
 #include <strings.h>
-#include <zconf.h>
 
 /***
  * @module ucl
@@ -484,7 +483,7 @@ static int
 lua_ucl_parser_init (lua_State *L)
 {
        struct ucl_parser *parser, **pparser;
-       int flags = 0;
+       int flags = UCL_PARSER_NO_FILEVARS;
 
        if (lua_gettop (L) >= 1) {
                flags = lua_tonumber (L, 1);