Fix CONFIG_AP=y build without CONFIG_P2P=y

This commit is contained in:
Jouni Malinen 2010-11-24 16:55:17 +02:00 committed by Jouni Malinen
parent fe99fb74f1
commit 7a80af658d

View File

@ -1716,10 +1716,9 @@ void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
#ifdef CONFIG_AP #ifdef CONFIG_AP
case EVENT_TX_STATUS: case EVENT_TX_STATUS:
wpa_printf(MSG_DEBUG, "EVENT_TX_STATUS on %s dst=" MACSTR wpa_printf(MSG_DEBUG, "EVENT_TX_STATUS on %s dst=" MACSTR
" type=%d stype=%d pending_dst=" MACSTR, " type=%d stype=%d",
wpa_s->ifname, MAC2STR(data->tx_status.dst), wpa_s->ifname, MAC2STR(data->tx_status.dst),
data->tx_status.type, data->tx_status.stype, data->tx_status.type, data->tx_status.stype);
MAC2STR(wpa_s->parent->pending_action_dst));
if (wpa_s->ap_iface == NULL) { if (wpa_s->ap_iface == NULL) {
#ifdef CONFIG_P2P #ifdef CONFIG_P2P
if (data->tx_status.type == WLAN_FC_TYPE_MGMT && if (data->tx_status.type == WLAN_FC_TYPE_MGMT &&
@ -1735,6 +1734,8 @@ void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
break; break;
} }
#ifdef CONFIG_P2P #ifdef CONFIG_P2P
wpa_printf(MSG_DEBUG, "EVENT_TX_STATUS pending_dst=" MACSTR,
MAC2STR(wpa_s->parent->pending_action_dst));
/* /*
* Catch TX status events for Action frames we sent via group * Catch TX status events for Action frames we sent via group
* interface in GO mode. * interface in GO mode.