diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-11-08 22:58:45 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-11-08 22:58:45 +0100 |
commit | f88662d0361fa1561ee15f544934655a0dbc9414 (patch) | |
tree | c532af107cc49c9a6cd02152b0f23961df157cfc /config.c | |
parent | b6d7a8bc9822667cb851bec465c3ad7cd6714e90 (diff) |
do not hardcode config package in config_init_package()
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -337,7 +337,7 @@ config_init_package(const char *config) uci_unload(ctx, p); } - if (uci_load(ctx, "network", &p)) + if (uci_load(ctx, config, &p)) return NULL; return p; |