aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-24 22:33:49 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-24 22:33:49 +0000
commite5cf918f032e3e94941cd201cc72287507cbb6e8 (patch)
tree002efd5df72056ded74d2376549f077464c652a8 /epan
parentb84d6df18a1c7ce2d5c0ecc7039518ebaa50b5df (diff)
Removed even more C++ style comments.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24186 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ssl-utils.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-ssl-utils.c b/epan/dissectors/packet-ssl-utils.c
index 1bc23fa634..f891dcec01 100644
--- a/epan/dissectors/packet-ssl-utils.c
+++ b/epan/dissectors/packet-ssl-utils.c
@@ -2139,8 +2139,8 @@ ssl_load_pkcs12(FILE* fp, const gchar *cert_passwd) {
default: ;
}
- } // j
- } // i
+ } /* j */
+ } /* i */
return private_key;
}
@@ -2619,7 +2619,7 @@ ssl_parse_key_list(const gchar * keys_list, GHashTable *key_hash, GTree* associa
service->addr.len = 4;
service->addr.data = ip = ((guchar*)service) + sizeof(SslService);
- //remove all spaces in addr
+ /* remove all spaces in addr */
read_index = 0;
write_index = 0;
@@ -2663,7 +2663,7 @@ ssl_parse_key_list(const gchar * keys_list, GHashTable *key_hash, GTree* associa
{
private_key = ssl_load_pkcs12(fp,cert_passwd);
}
- //!!!
+ /* !!! */
if (!private_key) {
fprintf(stderr,"can't load private key from %s\n",
filename);
@@ -2674,7 +2674,7 @@ ssl_parse_key_list(const gchar * keys_list, GHashTable *key_hash, GTree* associa
ssl_debug_printf("ssl_init private key file %s successfully loaded\n",filename);
- //if item exists, remove first
+ /* if item exists, remove first */
tmp_private_key = g_hash_table_lookup(key_hash, service);
if (tmp_private_key) {
g_hash_table_remove(key_hash, service);