projects
/
oweals
/
uci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b9abb1b
)
use .type instead of .TYPE
author
Felix Fietkau
<nbd@openwrt.org>
Tue, 3 Jun 2008 21:38:38 +0000
(23:38 +0200)
committer
Felix Fietkau
<nbd@openwrt.org>
Tue, 3 Jun 2008 21:38:38 +0000
(23:38 +0200)
lua/uci.c
patch
|
blob
|
history
diff --git
a/lua/uci.c
b/lua/uci.c
index 2e1e513d74a7b6b0e862280fcf9af915eddaf0e2..69759a72972ab7c0a0791d3830aabf25bec5fc5e 100644
(file)
--- a/
lua/uci.c
+++ b/
lua/uci.c
@@
-94,7
+94,7
@@
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_setfield(L, -2, ".
type
");
uci_foreach_element(&s->options, e) {
struct uci_option *o = uci_to_option(e);
@@
-531,7
+531,7
@@
uci_lua_add_change(lua_State *L, struct uci_element *e)
lua_setfield(L, -3, h->section);
}
- name = (h->e.name ? h->e.name : ".
TYPE
");
+ name = (h->e.name ? h->e.name : ".
type
");
if (h->value)
lua_pushstring(L, h->value);
else