Browse Source

Move wpa_drivers dependency into config_file.c

This cleans up config.o from driver wrapper dependencies.
Jouni Malinen 15 years ago
parent
commit
d3b86aed73
2 changed files with 9 additions and 12 deletions
  1. 0 12
      hostapd/config.c
  2. 9 0
      hostapd/config_file.c

+ 0 - 12
hostapd/config.c

@@ -26,9 +26,6 @@
 #include "config.h"
 
 
-extern struct wpa_driver_ops *wpa_drivers[];
-
-
 static void hostapd_config_free_vlan(struct hostapd_bss_config *bss)
 {
 	struct hostapd_vlan *vlan, *prev;
@@ -115,15 +112,6 @@ struct hostapd_config * hostapd_config_defaults(void)
 		return NULL;
 	}
 
-	/* set default driver based on configuration */
-	conf->driver = wpa_drivers[0];
-	if (conf->driver == NULL) {
-		wpa_printf(MSG_ERROR, "No driver wrappers registered!");
-		os_free(conf);
-		os_free(bss);
-		return NULL;
-	}
-
 	bss->radius = os_zalloc(sizeof(*bss->radius));
 	if (bss->radius == NULL) {
 		os_free(conf);

+ 9 - 0
hostapd/config_file.c

@@ -1148,6 +1148,15 @@ struct hostapd_config * hostapd_config_read(const char *fname)
 		fclose(f);
 		return NULL;
 	}
+
+	/* set default driver based on configuration */
+	conf->driver = wpa_drivers[0];
+	if (conf->driver == NULL) {
+		wpa_printf(MSG_ERROR, "No driver wrappers registered!");
+		hostapd_config_free(conf);
+		return NULL;
+	}
+
 	bss = conf->last_bss = conf->bss;
 
 	while (fgets(buf, sizeof(buf), f)) {