diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2015-04-07 09:41:20 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2015-04-22 08:44:18 (GMT) |
commit | 81847c22ba756d181a990eb5f8b7dab388ba72cc (patch) | |
tree | 6ad38a96fe09aec650ac7853675eba32cf6223dc /hostapd | |
parent | 6fb761c69085971a8098d6e353de1d02412aa242 (diff) | |
download | hostap-81847c22ba756d181a990eb5f8b7dab388ba72cc.zip hostap-81847c22ba756d181a990eb5f8b7dab388ba72cc.tar.gz hostap-81847c22ba756d181a990eb5f8b7dab388ba72cc.tar.bz2 |
Replace HOSTAPD_MAX_SSID_LEN with SSID_MAX_LEN
This makes source code more consistent.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'hostapd')
-rw-r--r-- | hostapd/config_file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hostapd/config_file.c b/hostapd/config_file.c index f4cccf5..1186644 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -1723,7 +1723,7 @@ static int hs20_parse_osu_ssid(struct hostapd_bss_config *bss, char *str; str = wpa_config_parse_string(pos, &slen); - if (str == NULL || slen < 1 || slen > HOSTAPD_MAX_SSID_LEN) { + if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) { wpa_printf(MSG_ERROR, "Line %d: Invalid SSID '%s'", line, pos); os_free(str); return -1; @@ -1970,7 +1970,7 @@ static int hostapd_config_fill(struct hostapd_config *conf, line); } else if (os_strcmp(buf, "ssid") == 0) { bss->ssid.ssid_len = os_strlen(pos); - if (bss->ssid.ssid_len > HOSTAPD_MAX_SSID_LEN || + if (bss->ssid.ssid_len > SSID_MAX_LEN || bss->ssid.ssid_len < 1) { wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'", line, pos); @@ -1981,7 +1981,7 @@ static int hostapd_config_fill(struct hostapd_config *conf, } else if (os_strcmp(buf, "ssid2") == 0) { size_t slen; char *str = wpa_config_parse_string(pos, &slen); - if (str == NULL || slen < 1 || slen > HOSTAPD_MAX_SSID_LEN) { + if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) { wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'", line, pos); os_free(str); |