From: Jouni Malinen Date: Wed, 3 Sep 2014 12:37:58 +0000 (+0300) Subject: hostapd: Remove unused variable assignment X-Git-Tag: hostap_2_3~123 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df756b374e4e437117a8b40a079e8df3cf77e98d;p=thirdparty%2Fhostap.git hostapd: Remove unused variable assignment The local bss variable is used only within the while loop, so no need to assign or even make it visible outside the loop. Signed-off-by: Jouni Malinen --- diff --git a/hostapd/config_file.c b/hostapd/config_file.c index be4039855..32e3c49dd 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -3175,7 +3175,6 @@ static int hostapd_config_fill(struct hostapd_config *conf, struct hostapd_config * hostapd_config_read(const char *fname) { struct hostapd_config *conf; - struct hostapd_bss_config *bss; FILE *f; char buf[512], *pos; int line = 0; @@ -3204,9 +3203,11 @@ struct hostapd_config * hostapd_config_read(const char *fname) return NULL; } - bss = conf->last_bss = conf->bss[0]; + conf->last_bss = conf->bss[0]; while (fgets(buf, sizeof(buf), f)) { + struct hostapd_bss_config *bss; + bss = conf->last_bss; line++;