aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--airpcap_loader.c8
-rw-r--r--airpcap_loader.h4
-rw-r--r--gtk/airpcap_gui_utils.c4
3 files changed, 8 insertions, 8 deletions
diff --git a/airpcap_loader.c b/airpcap_loader.c
index b17aabf348..91e23bc578 100644
--- a/airpcap_loader.c
+++ b/airpcap_loader.c
@@ -53,7 +53,7 @@
#include "airpcap_loader.h"
/*
- * We load dinamically the dag library in order link it only when
+ * We load dynamically the dag library in order link it only when
* it's present on the system
*/
static HMODULE AirpcapLib = NULL;
@@ -262,7 +262,7 @@ load_wlan_driver_wep_keys()
prefs_apply(wlan_prefs);
- write_wlan_driver_wep_keys_to_regitry(user_data->list);
+ write_wlan_driver_wep_keys_to_registry(user_data->list);
/* FREE MEMORY */
/* free the WEP key string */
@@ -287,7 +287,7 @@ load_wlan_driver_wep_keys()
* This will be stored into the registry...
*/
BOOL
-write_wlan_wep_keys_to_regitry(airpcap_if_info_t* info_if, GList* key_list)
+write_wlan_wep_keys_to_registry(airpcap_if_info_t* info_if, GList* key_list)
{
UINT i,j;
GString *new_key;
@@ -377,7 +377,7 @@ write_wlan_wep_keys_to_regitry(airpcap_if_info_t* info_if, GList* key_list)
* This will be stored into the registry...
*/
BOOL
-write_wlan_driver_wep_keys_to_regitry(GList* key_list)
+write_wlan_driver_wep_keys_to_registry(GList* key_list)
{
UINT i,j,k,n,y;
GString *new_key;
diff --git a/airpcap_loader.h b/airpcap_loader.h
index 1286b5a832..420eb032cd 100644
--- a/airpcap_loader.h
+++ b/airpcap_loader.h
@@ -142,7 +142,7 @@ save_wlan_wep_keys(airpcap_if_info_t* info_if);
* This will be stored into the registry...
*/
gboolean
-write_wlan_wep_keys_to_regitry(airpcap_if_info_t* info_if, GList* key_list);
+write_wlan_wep_keys_to_registry(airpcap_if_info_t* info_if, GList* key_list);
/* Returs TRUE if the WEP key is valid, false otherwise */
gboolean
@@ -407,7 +407,7 @@ airpcap_if_info_free(airpcap_if_info_t *if_info);
* This will be stored into the registry...
*/
BOOL
-write_wlan_driver_wep_keys_to_regitry(GList* key_list);
+write_wlan_driver_wep_keys_to_registry(GList* key_list);
/*
* Clear keys and decryption status for the specified interface
diff --git a/gtk/airpcap_gui_utils.c b/gtk/airpcap_gui_utils.c
index 4cc8f6db80..f5d2abce59 100644
--- a/gtk/airpcap_gui_utils.c
+++ b/gtk/airpcap_gui_utils.c
@@ -998,13 +998,13 @@ airpcap_save_decryption_keys(GList* key_list, GList* adapters_list)
key_n = g_list_length(key_list);
/* Set the driver's global list of keys. */
- write_wlan_driver_wep_keys_to_regitry(key_list);
+ write_wlan_driver_wep_keys_to_registry(key_list);
/* Empty the key list for each interface */
for(i = 0; i < if_n; i++)
{
curr_if = (airpcap_if_info_t*)g_list_nth_data(adapters_list,i);
- write_wlan_wep_keys_to_regitry(curr_if,empty_key_list);
+ write_wlan_wep_keys_to_registry(curr_if,empty_key_list);
}
/*