diff options
author | Maria Matejka <mq@ucw.cz> | 2019-02-26 16:44:24 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2019-02-26 16:44:24 +0100 |
commit | f249d0b84c840242a084966999a1d228c603b431 (patch) | |
tree | 7e366d772a68306b20c8c71e34febc747d9a8fe5 /conf/conf.c | |
parent | 0d12aa48363802e751d3b9a4afd6eb090592d7a3 (diff) |
Filters: comparison of functions and filters caching
Diffstat (limited to 'conf/conf.c')
-rw-r--r-- | conf/conf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/conf.c b/conf/conf.c index 439aa41d..b0980d7e 100644 --- a/conf/conf.c +++ b/conf/conf.c @@ -98,6 +98,7 @@ config_alloc(const char *name) memcpy(ndup, name, nlen); init_list(&c->tests); + init_list(&c->symbols); c->mrtdump_file = -1; /* Hack, this should be sysdep-specific */ c->pool = p; c->mem = l; @@ -258,6 +259,8 @@ config_do_commit(struct config *c, int type) if (old_config) old_config->obstacle_count++; + DBG("filter_commit\n"); + filter_commit(c, old_config); DBG("sysdep_commit\n"); int force_restart = sysdep_commit(c, old_config); DBG("global_commit\n"); |