X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=config.c;h=49bae15dfe21599d6dc6058f2598760b429f1196;hp=682db54d536b42c65db1835368494f79af5c3fcd;hb=594f4dcd3a37b087fe8c1a4737bbd41a620c24a9;hpb=65963f0ad2207b55dc7715015839b59b58855a67 diff --git a/config.c b/config.c index 682db54..49bae15 100644 --- a/config.c +++ b/config.c @@ -71,12 +71,11 @@ config_parse_interface(struct uci_section *s, bool alias) } uci_to_blob(&b, s, &interface_attr_list); - iface = calloc(1, sizeof(*iface)); + + iface = interface_alloc(s->e.name, b.head); if (!iface) return; - 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);