From f31407553164219fd6e8bcb23f9779de0316b857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lowas-Rzechonek?= Date: Wed, 8 Jan 2020 22:51:14 +0100 Subject: [PATCH] mesh: Fix BeaconFlags property type This property is an uint8, not a boolean. --- mesh/node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh/node.c b/mesh/node.c index 2575f4da1..3154d6bf4 100644 --- a/mesh/node.c +++ b/mesh/node.c @@ -2280,7 +2280,7 @@ static void setup_node_interface(struct l_dbus_interface *iface) l_dbus_interface_property(iface, "Features", 0, "a{sv}", features_getter, NULL); l_dbus_interface_property(iface, "Beacon", 0, "b", beacon_getter, NULL); - l_dbus_interface_property(iface, "BeaconFlags", 0, "b", + l_dbus_interface_property(iface, "BeaconFlags", 0, "y", beaconflags_getter, NULL); l_dbus_interface_property(iface, "IvIndex", 0, "u", ivindex_getter, NULL); -- 2.47.3