diff options
Diffstat (limited to 'contrib/hostapd/config.c')
-rw-r--r-- | contrib/hostapd/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/hostapd/config.c b/contrib/hostapd/config.c index ede009a..02ecd79 100644 --- a/contrib/hostapd/config.c +++ b/contrib/hostapd/config.c @@ -597,7 +597,8 @@ static int hostapd_config_check(struct hostapd_config *conf) } if (conf->wpa && (conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) && - conf->wpa_psk == NULL && conf->wpa_passphrase == NULL) { + conf->wpa_psk == NULL && conf->wpa_passphrase == NULL && + conf->wpa_psk_file == NULL) { printf("WPA-PSK enabled, but PSK or passphrase is not " "configured.\n"); return -1; |