hostapd: Remove redundant variable initialization
authorBaruch Siach <baruch@tkos.co.il>
Sat, 16 Jun 2012 17:26:51 +0000 (20:26 +0300)
committerJouni Malinen <j@w1.fi>
Sat, 16 Jun 2012 17:26:51 +0000 (20:26 +0300)
The 'errors' variable is initialized later anyway.

Signed-hostap: Baruch Siach <baruch@tkos.co.il>

hostapd/config_file.c

index eab8ad4..65a53fe 100644 (file)
@@ -2475,7 +2475,7 @@ struct hostapd_config * hostapd_config_read(const char *fname)
 int hostapd_set_iface(struct hostapd_config *conf,
                      struct hostapd_bss_config *bss, char *field, char *value)
 {
-       int errors = 0;
+       int errors;
        size_t i;
 
        errors = hostapd_config_fill(conf, bss, field, value, 0);