Fixed a typo in printf -> wpa_printf changes
This commit is contained in:
parent
24bb3d9788
commit
4cdde5caf7
1 changed files with 3 additions and 2 deletions
|
@ -1520,8 +1520,9 @@ struct hostapd_config * hostapd_config_read(const char *fname)
|
|||
} else if (os_strcmp(buf, "deny_mac_file") == 0) {
|
||||
if (hostapd_config_read_maclist(pos, &bss->deny_mac,
|
||||
&bss->num_deny_mac)) {
|
||||
wpa_printf(MSG_ERROR "Line %d: Failed to read "
|
||||
"deny_mac_file '%s'", line, pos);
|
||||
wpa_printf(MSG_ERROR, "Line %d: Failed to "
|
||||
"read deny_mac_file '%s'",
|
||||
line, pos);
|
||||
errors++;
|
||||
}
|
||||
} else if (os_strcmp(buf, "ap_max_inactivity") == 0) {
|
||||
|
|
Loading…
Reference in a new issue