X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=config.c;h=94a7fdbccb8b71acb728ddc4433ef100aab6f7bb;hp=1711121f627f28d3edce137096e3a0e6548adb25;hb=fd4efb1bbfe5a502a802f43871cfae9944c8d75f;hpb=d3a4844047c7b3c62511a9836a81703b5ee70fc0 diff --git a/config.c b/config.c index 1711121..94a7fdb 100644 --- a/config.c +++ b/config.c @@ -10,7 +10,7 @@ #include "interface.h" struct uci_context *uci_ctx; -struct uci_package *uci_network; +static struct uci_package *uci_network; bool config_init = false; enum { @@ -34,7 +34,7 @@ config_parse_interface(struct uci_section *s) DPRINTF("Create interface '%s'\n", s->e.name); - iface = alloc_interface(s->e.name); + iface = alloc_interface(s->e.name, s); if (!iface) return;