mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-07 14:12:43 -04:00
fixing compilation for openssl-1.1.0 (part 9)
This commit is contained in:
parent
d5e679299c
commit
fc1a792a12
1 changed files with 2 additions and 2 deletions
|
@ -302,9 +302,9 @@ static ops_boolean_t dsa_sign(ops_hash_t *hash, const ops_dsa_public_key_t *dsa,
|
||||||
ops_write_mpi(dsasig->r, cinfo);
|
ops_write_mpi(dsasig->r, cinfo);
|
||||||
ops_write_mpi(dsasig->s, cinfo);
|
ops_write_mpi(dsasig->s, cinfo);
|
||||||
#else
|
#else
|
||||||
BIGNUM *rr=NULL,*ss=NULL ;
|
const BIGNUM *rr=NULL,*ss=NULL ;
|
||||||
|
|
||||||
DSA_SIG_get0(&rr,&ss) ;
|
DSA_SIG_get0(dsasig,&rr,&ss) ;
|
||||||
|
|
||||||
ops_write_mpi(rr, cinfo);
|
ops_write_mpi(rr, cinfo);
|
||||||
ops_write_mpi(ss, cinfo);
|
ops_write_mpi(ss, cinfo);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue