|
@@ -1303,14 +1303,13 @@ int prism2mgmt_wlansniff(struct wlandevice *wlandev, void *msgp)
|
|
|
/* Set the driver state */
|
|
|
/* Do we want the prism2 header? */
|
|
|
if ((msg->prismheader.status ==
|
|
|
- P80211ENUM_msgitem_status_data_ok)
|
|
|
- && (msg->prismheader.data == P80211ENUM_truth_true)) {
|
|
|
+ P80211ENUM_msgitem_status_data_ok) &&
|
|
|
+ (msg->prismheader.data == P80211ENUM_truth_true)) {
|
|
|
hw->sniffhdr = 0;
|
|
|
wlandev->netdev->type = ARPHRD_IEEE80211_PRISM;
|
|
|
- } else
|
|
|
- if ((msg->wlanheader.status ==
|
|
|
- P80211ENUM_msgitem_status_data_ok)
|
|
|
- && (msg->wlanheader.data == P80211ENUM_truth_true)) {
|
|
|
+ } else if ((msg->wlanheader.status ==
|
|
|
+ P80211ENUM_msgitem_status_data_ok) &&
|
|
|
+ (msg->wlanheader.data == P80211ENUM_truth_true)) {
|
|
|
hw->sniffhdr = 1;
|
|
|
wlandev->netdev->type = ARPHRD_IEEE80211_PRISM;
|
|
|
} else {
|