diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-10-19 17:30:04 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-10-19 17:30:04 +0200 |
commit | 65963f0ad2207b55dc7715015839b59b58855a67 (patch) | |
tree | c6b7cbc6afce934627f85ee25e7c1bdb560414cf /config.c | |
parent | 566af724dad393fa127e07469dcc9ade62bd3a75 (diff) |
interface: remove "dynamic" argument for interface_init, add the interface_set_dynamic function instead
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ config_parse_interface(struct uci_section *s, bool alias) if (!iface) return; - interface_init(iface, s->e.name, b.head, false); + interface_init(iface, s->e.name, b.head); if (iface->proto_handler && iface->proto_handler->config_params) uci_to_blob(&b, s, iface->proto_handler->config_params); |