dbus: Fix value of BSS Privacy property

Checking for IEEE80211_CAP_PRIVACY needs to use & and not &&.
This commit is contained in:
Marcel Holtmann 2010-01-10 18:18:08 +02:00 committed by Jouni Malinen
parent 728e776c09
commit 097c5802da
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}