mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-06 05:14:21 -04:00
Changed a while loop from 'while(err=ERR_get_error())' to 'while(err==ERR_get_error())'
This commit is contained in:
parent
0282c2aeb3
commit
1e90194c86
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ ops_boolean_t ops_dsa_verify(const unsigned char *hash,size_t hash_length,
|
||||||
{
|
{
|
||||||
ERR_load_crypto_strings() ;
|
ERR_load_crypto_strings() ;
|
||||||
unsigned long err = 0 ;
|
unsigned long err = 0 ;
|
||||||
while(err = ERR_get_error())
|
while(err == ERR_get_error())
|
||||||
fprintf(stderr,"DSA_do_verify(): ERR = %ld. lib error:\"%s\", func_error:\"%s\", reason:\"%s\"\n",err,ERR_lib_error_string(err),ERR_func_error_string(err),ERR_reason_error_string(err)) ;
|
fprintf(stderr,"DSA_do_verify(): ERR = %ld. lib error:\"%s\", func_error:\"%s\", reason:\"%s\"\n",err,ERR_lib_error_string(err),ERR_func_error_string(err),ERR_reason_error_string(err)) ;
|
||||||
//assert(ret >= 0);
|
//assert(ret >= 0);
|
||||||
return ops_false ;
|
return ops_false ;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue