From 17706d1c7604c2beac6d33ff39ceccd63aa9a33a Mon Sep 17 00:00:00 2001 From: Baruch Siach Date: Sat, 16 Jun 2012 20:30:28 +0300 Subject: [PATCH] hostapd: Return error value on configuration check failure Don't count errors since the number isn't used anyway. Signed-hostap: Baruch Siach --- hostapd/config_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hostapd/config_file.c b/hostapd/config_file.c index 65a53fe50..6729e5c1d 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -2490,7 +2490,7 @@ int hostapd_set_iface(struct hostapd_config *conf, if (hostapd_config_check(conf)) { wpa_printf(MSG_ERROR, "Configuration check failed"); - errors++; + return -1; } return 0;