Browse Source

lua: ubus_lua_do_subscribe: fix copy&paste error

Fix copy&paste error in Lua ubus subscriber removal callback.

Addresses-Coverity-ID: 1412311 ("Copy-paste error")
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Petr Štetiar 4 years ago
parent
commit
72be8e93f0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lua/ubus.c

+ 2 - 2
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;
 	}