lua: add optional path filter to objects() method
authorEtienne Champetier <champetier.etienne@gmail.com>
Sun, 1 May 2022 21:58:09 +0000 (17:58 -0400)
committerPetr Štetiar <ynezz@true.cz>
Mon, 30 May 2022 05:00:52 +0000 (07:00 +0200)
'ubus list [<path>]' passes the path to ubusd,
this commit fix the lua bindings to do the same

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
lua/ubus.c

index e2bb0817fc8eda0b24aabb0a31801c224b8e3f29..07b816d40f851aaaebb25f73d34e86d94db10b13 100644 (file)
@@ -286,9 +286,10 @@ ubus_lua_objects(lua_State *L)
 {
        int rv;
        struct ubus_lua_connection *c = luaL_checkudata(L, 1, METANAME);
+       const char *path = (lua_gettop(L) >= 2) ? luaL_checkstring(L, 2) : NULL;
 
        lua_newtable(L);
-       rv = ubus_lookup(c->ctx, NULL, ubus_lua_objects_cb, L);
+       rv = ubus_lookup(c->ctx, path, ubus_lua_objects_cb, L);
 
        if (rv != UBUS_STATUS_OK)
        {