summaryrefslogtreecommitdiff
path: root/airpcap_loader.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2007-02-19 21:45:27 +0000
committerBill Meier <wmeier@newsguy.com>2007-02-19 21:45:27 +0000
commit547a03b25bc410340844b05a56e9ee3cd631b6f8 (patch)
tree7b56aa2fb23fc0c492289327be5afebb24bb2370 /airpcap_loader.c
parent4009deca1bc56e1a26826e144e472367559bb637 (diff)
downloadwireshark-547a03b25bc410340844b05a56e9ee3cd631b6f8.tar.gz
Fix some C++ style comments
svn path=/trunk/; revision=20865
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 */