From 72be8e93f07d0dfb1f42edfbdb93ea04311dcb5a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Mon, 16 Dec 2019 23:02:02 +0100 Subject: [PATCH] lua: ubus_lua_do_subscribe: fix copy&paste error MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix copy&paste error in Lua ubus subscriber removal callback. Addresses-Coverity-ID: 1412311 ("Copy-paste error") Signed-off-by: Petr Å tetiar --- lua/ubus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/ubus.c b/lua/ubus.c index fb50418..86dcc50 100644 --- a/lua/ubus.c +++ b/lua/ubus.c @@ -840,8 +840,8 @@ ubus_lua_do_subscribe( struct ubus_context *ctx, lua_State *L, const char* targe if( idxremove ){ lua_getglobal(L, "__ubus_cb_subscribe"); - lua_pushvalue(L, idxnotify); - sub->rnotify = luaL_ref(L, -2); + lua_pushvalue(L, idxremove); + sub->rremove = luaL_ref(L, -2); lua_pop(L, 1); sub->s.remove_cb = ubus_sub_remove_handler; } -- 2.30.2