aboutsummaryrefslogtreecommitdiffstats
path: root/airpcap_loader.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-19 21:45:27 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-19 21:45:27 +0000
commit63ef59c96975aae35a5692f70436c19093db3b0b (patch)
tree7b56aa2fb23fc0c492289327be5afebb24bb2370 /airpcap_loader.c
parent182720c6d81f21f08b3a1d4883fe7a2de26d582a (diff)
Fix some C++ style comments
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20865 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'airpcap_loader.c')
-rw-r--r--airpcap_loader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/airpcap_loader.c b/airpcap_loader.c
index 91e23bc578..1e37cb6c18 100644
--- a/airpcap_loader.c
+++ b/airpcap_loader.c
@@ -1957,8 +1957,8 @@ keys_are_equals(decryption_key_t *k1,decryption_key_t *k2)
return FALSE;
/* XXX - Remove this check when we will have the WPA/WPA2 decryption in the Driver! */
- //if( (k1->type == AIRPDCAP_KEY_TYPE_WPA_PWD) || (k2->type == AIRPDCAP_KEY_TYPE_WPA_PWD) || (k1->type == AIRPDCAP_KEY_TYPE_WPA_PMK) || (k2->type == AIRPDCAP_KEY_TYPE_WPA_PMK) )
- // return TRUE;
+ /** //if( (k1->type == AIRPDCAP_KEY_TYPE_WPA_PWD) || (k2->type == AIRPDCAP_KEY_TYPE_WPA_PWD) || (k1->type == AIRPDCAP_KEY_TYPE_WPA_PMK) || (k2->type == AIRPDCAP_KEY_TYPE_WPA_PMK) ) **/
+ /** // return TRUE; **/
if( g_string_equal(k1->key,k2->key) &&
(k1->bits == k2->bits) && /* If the previous is TRUE, this must be TRUE as well */