mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-21 03:32:42 +01:00
resolve: Fix message argument
Previously, the argument was incorrectly passed by reference instead of by value.
This commit is contained in:
parent
f557c7e6cd
commit
6efc94ff5a
@ -188,7 +188,7 @@ static void resolve_systemd_remove(uint32_t ifindex, void *data)
|
||||
if (!message)
|
||||
return;
|
||||
|
||||
l_dbus_message_set_arguments(message, "i", &ifindex);
|
||||
l_dbus_message_set_arguments(message, "i", ifindex);
|
||||
|
||||
l_dbus_send_with_reply(dbus_get_bus(), message, systemd_link_dns_reply,
|
||||
state, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user