X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;ds=sidebyside;f=lua%2Fuci.c;h=e3a133491930192973673e07a35789e910b698f0;hb=d7cd87ffcc777f7e89747f859eb9a094c431ffd7;hp=69759a72972ab7c0a0791d3830aabf25bec5fc5e;hpb=297cec5ed3038c10e714ed07e637b0c2b8e079eb;p=project%2Fuci.git diff --git a/lua/uci.c b/lua/uci.c index 69759a7..e3a1334 100644 --- a/lua/uci.c +++ b/lua/uci.c @@ -95,6 +95,8 @@ static void uci_push_section(lua_State *L, struct uci_section *s) lua_newtable(L); lua_pushstring(L, s->type); lua_setfield(L, -2, ".type"); + lua_pushstring(L, s->e.name); + lua_setfield(L, -2, ".name"); uci_foreach_element(&s->options, e) { struct uci_option *o = uci_to_option(e);