No C++/C99-style comments, please.
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 6 Feb 2006 01:17:29 +0000 (01:17 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 6 Feb 2006 01:17:29 +0000 (01:17 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17171 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-ssl-utils.c

index fb9fe888ff4f6976f316ad368c8417bb868327af..057646e1ea8320777a7db5840d9716a54025d5a4 100644 (file)
@@ -1109,8 +1109,10 @@ ssl_load_key(FILE* fp)
         return NULL;
     }
 
-    // note: openssl and gnutls use 'p' and 'q' with opposite meaning:
-    // our 'p' must be equal to 'q' as provided from openssl and viceversa
+    /*
+     * note: openssl and gnutls use 'p' and 'q' with opposite meaning:
+     * our 'p' must be equal to 'q' as provided from openssl and viceversa
+     */
     if (gcry_mpi_scan( &rsa_params[2], GCRYMPI_FMT_USG, d.data,  d.size, &tmp_size) !=0) {
         ssl_debug_printf("ssl_load_key: can't convert d rsa param to int (size %d)\n", d.size);
         return NULL;