No C++/C99-style comments, please.

svn path=/trunk/; revision=17171
This commit is contained in:
Guy Harris 2006-02-06 01:17:29 +00:00
parent cc823c13aa
commit 6a77df11b1
1 changed files with 4 additions and 2 deletions

View 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;