summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPali Rohár <pali@kernel.org>2020-06-22 13:05:58 +0200
committerAndrej Shadura <andrewsh@debian.org>2020-11-30 10:02:04 +0100
commit633a2fe10a56c8bec1539cd608790ed16e7199cd (patch)
tree0f3b6d74192088820d4959867ab6eff2e1ca4239
parent90c02f4ca95eafdf3a1b7f56642588b6488dabc9 (diff)
hostapd: Fix error message for radius_accept_attr config option
To: hostap@lists.infradead.org Message-Id: <20200622110558.12068-1-pali@kernel.org> Error message contained wrong config option. Origin: https://patchwork.ozlabs.org/project/hostap/patch/20200622110558.12068-1-pali@kernel.org/ Gbp-Pq: Topic proposed-fixes Gbp-Pq: Name hostapd-Fix-error-message-for-radius_accept_attr-config-option.patch
-rw-r--r--hostapd/config_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hostapd/config_file.c b/hostapd/config_file.c
index e09e6e1..92fd1f0 100644
--- a/hostapd/config_file.c
+++ b/hostapd/config_file.c
@@ -340,7 +340,7 @@ static int hostapd_config_read_eap_user(const char *fname,
struct hostapd_radius_attr *attr, *a;
attr = hostapd_parse_radius_attr(buf + 19);
if (attr == NULL) {
- wpa_printf(MSG_ERROR, "Invalid radius_auth_req_attr: %s",
+ wpa_printf(MSG_ERROR, "Invalid radius_accept_attr: %s",
buf + 19);
user = NULL; /* already in the BSS list */
goto failed;