]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
dbus: Use dbus_bool_t, not int for boolean function arguments
authorAndrej Shadura <andrew.shadura@collabora.co.uk>
Sun, 7 Oct 2018 12:31:50 +0000 (14:31 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 23 Dec 2018 15:25:11 +0000 (17:25 +0200)
Properties argument specifies whether to add object's properties
or not, hence it doesn't need to be int.

Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>
wpa_supplicant/dbus/dbus_new.c

index d4deb0fe35f010b851d28b790ab1a43c91d2fd79..97655d5696fab0d407ac1ad840609d28e2232cb7 100644 (file)
@@ -128,7 +128,8 @@ void wpas_dbus_unsubscribe_noc(struct wpas_dbus_priv *priv)
  * Notify listeners about event related with interface
  */
 static void wpas_dbus_signal_interface(struct wpa_supplicant *wpa_s,
-                                      const char *sig_name, int properties)
+                                      const char *sig_name,
+                                      dbus_bool_t properties)
 {
        struct wpas_dbus_priv *iface;
        DBusMessage *msg;
@@ -230,7 +231,7 @@ void wpas_dbus_signal_scan_done(struct wpa_supplicant *wpa_s, int success)
  */
 static void wpas_dbus_signal_bss(struct wpa_supplicant *wpa_s,
                                 const char *bss_obj_path,
-                                const char *sig_name, int properties)
+                                const char *sig_name, dbus_bool_t properties)
 {
        struct wpas_dbus_priv *iface;
        DBusMessage *msg;
@@ -364,7 +365,7 @@ void wpas_dbus_signal_blob_removed(struct wpa_supplicant *wpa_s,
  */
 static void wpas_dbus_signal_network(struct wpa_supplicant *wpa_s,
                                     int id, const char *sig_name,
-                                    int properties)
+                                    dbus_bool_t properties)
 {
        struct wpas_dbus_priv *iface;
        DBusMessage *msg;
@@ -1882,7 +1883,7 @@ void wpas_dbus_signal_p2p_sd_response(struct wpa_supplicant *wpa_s,
  */
 static void wpas_dbus_signal_persistent_group(struct wpa_supplicant *wpa_s,
                                              int id, const char *sig_name,
-                                             int properties)
+                                             dbus_bool_t properties)
 {
        struct wpas_dbus_priv *iface;
        DBusMessage *msg;
@@ -4066,7 +4067,7 @@ static const struct wpa_dbus_signal_desc wpas_dbus_p2p_peer_signals[] = {
  */
 static void wpas_dbus_signal_peer(struct wpa_supplicant *wpa_s,
                                  const u8 *dev_addr, const char *interface,
-                                 const char *sig_name, int properties)
+                                 const char *sig_name, dbus_bool_t properties)
 {
        struct wpas_dbus_priv *iface;
        DBusMessage *msg;