diff options
| author | Felix Fietkau | 2011-11-08 21:58:45 +0000 |
|---|---|---|
| committer | Felix Fietkau | 2011-11-08 21:58:45 +0000 |
| commit | f88662d0361fa1561ee15f544934655a0dbc9414 (patch) | |
| tree | c532af107cc49c9a6cd02152b0f23961df157cfc | |
| parent | b6d7a8bc9822667cb851bec465c3ad7cd6714e90 (diff) | |
| download | netifd-f88662d0361fa1561ee15f544934655a0dbc9414.tar.gz | |
do not hardcode config package in config_init_package()
| -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; |