summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix <nbd@openwrt.org>2008-08-24 17:35:29 +0200
committerFelix <nbd@openwrt.org>2008-08-24 17:35:29 +0200
commit4dc75cbcd4cbd7f5f7924c4b912c2faea0ec432c (patch)
tree28879cf24f5e34cebee09f4c7d6b8c1637af3db5
parenta51c515dc1cdf93edb89484238259c941da8f3b6 (diff)
downloaduci-4dc75cbcd4cbd7f5f7924c4b912c2faea0ec432c.tar.gz
add .anonymous attribute for uci sections in lua
-rw-r--r--lua/uci.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/uci.c b/lua/uci.c
index e833b86..f87ce27 100644
--- a/lua/uci.c
+++ b/lua/uci.c
@@ -175,6 +175,8 @@ static void uci_push_section(lua_State *L, struct uci_section *s)
struct uci_element *e;
lua_newtable(L);
+ lua_pushboolean(L, s->anonymous);
+ lua_setfield(L, -2, ".anonymous");
lua_pushstring(L, s->type);
lua_setfield(L, -2, ".type");
lua_pushstring(L, s->e.name);