From 8e402d1657fa6c8246f5a2c588c656b7905aa5a2 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 8 Apr 2018 19:44:53 +0300 Subject: [PATCH] WPA: Fix a typo in a debug message "PT derivation" was supposed to be saying "PTK derivation". Signed-off-by: Jouni Malinen --- src/common/wpa_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }