dbus: Fix value of BSS Privacy property

Checking for IEEE80211_CAP_PRIVACY needs to use & and not &&.
master
Marcel Holtmann 15 years ago committed by Jouni Malinen
parent 728e776c09
commit 097c5802da

@ -2421,7 +2421,7 @@ DBusMessage * wpas_dbus_getter_bss_privacy(DBusMessage *message,
return NULL;
}
privacy = res->caps && IEEE80211_CAP_PRIVACY ? TRUE : FALSE;
privacy = (res->caps & IEEE80211_CAP_PRIVACY) ? TRUE : FALSE;
return wpas_dbus_simple_property_getter(message, DBUS_TYPE_BOOLEAN,
&privacy);
}

Loading…
Cancel
Save