Skip to content
Snippets Groups Projects
Commit c92728fb authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

utils: support extended format for uci section lookup


Signed-off-by: default avatarJo-Philipp Wich <jow@openwrt.org>
parent 149ce005
No related branches found
No related tags found
No related merge requests found
......@@ -372,6 +372,7 @@ struct uci_section *iwinfo_uci_get_radio(const char *name, const char *type)
struct uci_ptr ptr = {
.package = "wireless",
.section = name,
.flags = UCI_LOOKUP_EXTENDED,
};
const char *opt;
......@@ -381,11 +382,7 @@ struct uci_section *iwinfo_uci_get_radio(const char *name, const char *type)
return NULL;
}
memset(&ptr, 0, sizeof(ptr));
ptr.package = "wireless";
ptr.section = name;
if (uci_lookup_ptr(uci_ctx, &ptr, NULL, false))
if (uci_lookup_ptr(uci_ctx, &ptr, NULL, true))
return NULL;
if (!ptr.s || strcmp(ptr.s->type, "wifi-device") != 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment