X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=lua%2Fubus.c;fp=lua%2Fubus.c;h=45ea3bb20c07d7b47cd1aca624d2343b61668abd;hp=84ee06bd1e37f5aca3d47920d03200baeeccc051;hb=b356773921a89b370f8ccb34c9ea5f21148115ea;hpb=29d7092252a10c11ac137e38c871e301e26a8c11 diff --git a/lua/ubus.c b/lua/ubus.c index 84ee06b..45ea3bb 100644 --- a/lua/ubus.c +++ b/lua/ubus.c @@ -19,8 +19,8 @@ #include #include -#define MODNAME "ubus" -#define METANAME MODNAME ".meta" +#define MODNAME "ubus" +#define METANAME MODNAME ".meta" static lua_State *state; @@ -417,7 +417,7 @@ static struct ubus_object* ubus_lua_load_object(lua_State *L) obj->o.type->id = 0; obj->o.type->methods = obj->o.methods; - /* create the he callback lookup table */ + /* create the callback lookup table */ lua_createtable(L, 1, 0); lua_getglobal(L, "__ubus_cb"); lua_pushvalue(L, -2);