From: Pooventhiran G Date: Wed, 5 Mar 2025 16:27:59 +0000 (+0530) Subject: nl80211: Fix typo in SAE PWE debug message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ec3397236bc763f278ada3028d6ffe2264fd680;p=thirdparty%2Fhostap.git nl80211: Fix typo in SAE PWE debug message Signed-off-by: Pooventhiran G --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 398ee5c0a..56a412732 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -4834,7 +4834,7 @@ static int nl80211_put_sae_pwe(struct nl_msg *msg, enum sae_pwe pwe) { u8 sae_pwe; - wpa_printf(MSG_DEBUG, "nl802111: sae_pwe=%d", pwe); + wpa_printf(MSG_DEBUG, "nl80211: sae_pwe=%d", pwe); if (pwe == SAE_PWE_HUNT_AND_PECK) sae_pwe = NL80211_SAE_PWE_HUNT_AND_PECK; else if (pwe == SAE_PWE_HASH_TO_ELEMENT)