Remove double "on" from debug prints in CCA event callbacks
Signed-off-by: Aditya Kumar Singh <quic_adisi@quicinc.com>
This commit is contained in:
parent
d8e1a353a6
commit
5913d1a187
1 changed files with 3 additions and 3 deletions
|
@ -2714,16 +2714,16 @@ void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
|
|||
data->bss_color_collision.bitmap);
|
||||
break;
|
||||
case EVENT_CCA_STARTED_NOTIFY:
|
||||
wpa_printf(MSG_DEBUG, "CCA started on on %s",
|
||||
wpa_printf(MSG_DEBUG, "CCA started on %s",
|
||||
hapd->conf->iface);
|
||||
break;
|
||||
case EVENT_CCA_ABORTED_NOTIFY:
|
||||
wpa_printf(MSG_DEBUG, "CCA aborted on on %s",
|
||||
wpa_printf(MSG_DEBUG, "CCA aborted on %s",
|
||||
hapd->conf->iface);
|
||||
hostapd_cleanup_cca_params(hapd);
|
||||
break;
|
||||
case EVENT_CCA_NOTIFY:
|
||||
wpa_printf(MSG_DEBUG, "CCA finished on on %s",
|
||||
wpa_printf(MSG_DEBUG, "CCA finished on %s",
|
||||
hapd->conf->iface);
|
||||
if (hapd->cca_color)
|
||||
hapd->iface->conf->he_op.he_bss_color = hapd->cca_color;
|
||||
|
|
Loading…
Reference in a new issue