From: Jouni Malinen Date: Sun, 8 Apr 2018 16:44:53 +0000 (+0300) Subject: WPA: Fix a typo in a debug message X-Git-Tag: hostap_2_7~447 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e402d1657fa6c8246f5a2c588c656b7905aa5a2;p=thirdparty%2Fhostap.git WPA: Fix a typo in a debug message "PT derivation" was supposed to be saying "PTK derivation". Signed-off-by: Jouni Malinen --- diff --git a/src/common/wpa_common.c b/src/common/wpa_common.c index 53153b060..8fca56960 100644 --- a/src/common/wpa_common.c +++ b/src/common/wpa_common.c @@ -339,7 +339,7 @@ int wpa_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const char *label, size_t ptk_len; if (pmk_len == 0) { - wpa_printf(MSG_ERROR, "WPA: No PMK set for PT derivation"); + wpa_printf(MSG_ERROR, "WPA: No PMK set for PTK derivation"); return -1; }