From: Peter Wu Date: Sat, 9 Feb 2013 10:13:54 +0000 (+0200) Subject: dbus: Add missing signal description for WPS (7) X-Git-Tag: aosp-kk-from-upstream~580 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a24a5ccb28c2bc7af466e47b84dc346e6c54f062;p=thirdparty%2Fhostap.git dbus: Add missing signal description for WPS (7) Commit caff399250311abfea3376b38530a88bb78b957d added a property named "WPS" to the dbus interface. It did not add the new WPAS_DBUS_BSS_PROP_WPS property to the function responsible for marking changed properties though. This cause the following messages to be printed repeatedly to syslog: dbus: wpas_dbus_bss_signal_prop_changed: Unknown Property value 7 Signed-hostap: Peter Wu --- diff --git a/wpa_supplicant/dbus/dbus_new.c b/wpa_supplicant/dbus/dbus_new.c index 8bc6618ab..5b4a0a4db 100644 --- a/wpa_supplicant/dbus/dbus_new.c +++ b/wpa_supplicant/dbus/dbus_new.c @@ -1808,6 +1808,9 @@ void wpas_dbus_bss_signal_prop_changed(struct wpa_supplicant *wpa_s, case WPAS_DBUS_BSS_PROP_RSN: prop = "RSN"; break; + case WPAS_DBUS_BSS_PROP_WPS: + prop = "WPS"; + break; case WPAS_DBUS_BSS_PROP_IES: prop = "IEs"; break;