From a7297ae5cbfef9b2fd8c5878e89fe2aa1e6ac6e2 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 22 Sep 2017 15:23:00 +0300 Subject: [PATCH] Fix hostapd debug messages on wpa_pairwise and rsn_pairwise parsing Incorrect value was printed out as the line number for this messages. Signed-off-by: Jouni Malinen --- hostapd/config_file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hostapd/config_file.c b/hostapd/config_file.c index 880998bed..5f1032fb1 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -2628,7 +2628,7 @@ static int hostapd_config_fill(struct hostapd_config *conf, if (bss->wpa_pairwise & (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) { wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'", - bss->wpa_pairwise, pos); + line, pos); return 1; } } else if (os_strcmp(buf, "rsn_pairwise") == 0) { @@ -2638,7 +2638,7 @@ static int hostapd_config_fill(struct hostapd_config *conf, if (bss->rsn_pairwise & (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) { wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'", - bss->rsn_pairwise, pos); + line, pos); return 1; } #ifdef CONFIG_RSN_PREAUTH