From: Aditya Kumar Singh Date: Mon, 22 Apr 2024 12:40:01 +0000 (+0530) Subject: Remove double "on" from debug prints in CCA event callbacks X-Git-Tag: hostap_2_11~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5913d1a187a68be11e7227838c80de60ded46076;p=thirdparty%2Fhostap.git Remove double "on" from debug prints in CCA event callbacks Signed-off-by: Aditya Kumar Singh --- diff --git a/src/ap/drv_callbacks.c b/src/ap/drv_callbacks.c index 25e008ad2..5ae12dc01 100644 --- a/src/ap/drv_callbacks.c +++ b/src/ap/drv_callbacks.c @@ -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;