Renamed the 'alpha2' variable to 'country' to match with config string
authorJouni Malinen <j@w1.fi>
Tue, 9 Dec 2008 20:15:47 +0000 (22:15 +0200)
committerJouni Malinen <j@w1.fi>
Tue, 9 Dec 2008 20:15:47 +0000 (22:15 +0200)
wpa_supplicant/config.h
wpa_supplicant/config_file.c
wpa_supplicant/wpa_supplicant.c

index 3ec2a01..0cea72f 100644 (file)
@@ -254,12 +254,12 @@ struct wpa_config {
        u8 uuid[16];
 
        /**
-        * alpha2 - Country code
+        * country - Country code
         *
         * This is the ISO/IEC alpha2 country code for which we are operating
         * in
         */
-       char alpha2[2];
+       char country[2];
 };
 
 
index 09d6a67..c19cad4 100644 (file)
@@ -276,10 +276,10 @@ static int wpa_config_process_country(struct wpa_config *config, char *pos)
                wpa_printf(MSG_DEBUG, "Invalid country set");
                return -1;
        }
-       config->alpha2[0] = pos[0];
-       config->alpha2[1] = pos[1];
+       config->country[0] = pos[0];
+       config->country[1] = pos[1];
        wpa_printf(MSG_DEBUG, "country='%c%c'",
-                  config->alpha2[0], config->alpha2[1]);
+                  config->country[0], config->country[1]);
        return 0;
 }
 
@@ -891,9 +891,9 @@ static void wpa_config_write_global(FILE *f, struct wpa_config *config)
                fprintf(f, "uuid=%s\n", buf);
        }
 #endif /* CONFIG_WPS */
-       if (config->alpha2[0] && config->alpha2[1]) {
+       if (config->country[0] && config->country[1]) {
                fprintf(f, "country=%c%c\n",
-                       config->alpha2[0], config->alpha2[1]);
+                       config->country[0], config->country[1]);
        }
 }
 
index c3e7dbd..cbe466c 100644 (file)
@@ -1790,8 +1790,8 @@ static int wpa_supplicant_init_iface2(struct wpa_supplicant *wpa_s)
        if (wpa_supplicant_driver_init(wpa_s) < 0)
                return -1;
 
-       if (wpa_s->conf->alpha2[0] && wpa_s->conf->alpha2[1] &&
-           wpa_drv_set_country(wpa_s, wpa_s->conf->alpha2)) {
+       if (wpa_s->conf->country[0] && wpa_s->conf->country[1] &&
+           wpa_drv_set_country(wpa_s, wpa_s->conf->country)) {
                wpa_printf(MSG_DEBUG, "Failed to set country");
                return -1;
        }