Commit 10321b9f authored by Killian Lufau's avatar Killian Lufau Committed by Juliusz Chroboczek

Add missing add_filter when parsing install filters.

It was removed by accident in commit ce457a79.
parent e4c0e82b
...@@ -1035,6 +1035,7 @@ parse_config_line(int c, gnc_t gnc, void *closure, ...@@ -1035,6 +1035,7 @@ parse_config_line(int c, gnc_t gnc, void *closure,
c = parse_filter(c, gnc, closure, &filter); c = parse_filter(c, gnc, closure, &filter);
if(c < -1) if(c < -1)
goto fail; goto fail;
add_filter(filter, &install_filters);
} else if(strcmp(token, "interface") == 0) { } else if(strcmp(token, "interface") == 0) {
struct interface_conf *if_conf; struct interface_conf *if_conf;
c = parse_ifconf(c, gnc, closure, &if_conf); c = parse_ifconf(c, gnc, closure, &if_conf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment