[openssl-dev] '-CIPHER_DEBUG' error on 'dh_dsa'

Kurt Roeckx kurt at roeckx.be
Sat Jan 16 16:13:13 UTC 2016


On Sat, Jan 16, 2016 at 03:03:41PM +0000, Alessandro Ghedini wrote:
> On Sat, Jan 16, 2016 at 01:51:28pm +0100, Gisle Vanem wrote:
> > Having '-DCIPHER_DEBUG' in the CFLAGS causes this error in
> > MingW (gcc 5.1):
> >   ssl/ssl_lib.c:2499:58: error: 'dh_dsa' undeclared (first use in this function)
> >             dh_tmp, rsa_enc, rsa_sign, dsa_sign, dh_rsa, dh_dsa);
> > 
> > (+ a lot wore warnings). Time to retire/rewrite this 'CIPHER_DEBUG'
> > part? Or patch ssl/ssl_lib.c:
> > 
> > --- a/ssl/ssl_lib.c 2016-01-16 06:28:59
> > +++ b/ssl/ssl_lib.c 2016-01-16 13:40:51
> > @@ -2495,8 +2495,8 @@
> > 
> >  #ifdef CIPHER_DEBUG
> >      fprintf(stderr,
> > -            "dht=%d re=%d rs=%d ds=%d dhr=%d dhd=%d\n",
> > -            dh_tmp, rsa_enc, rsa_sign, dsa_sign, dh_rsa, dh_dsa);
> > +            "dht=%d re=%d rs=%d ds=%d\n",
> > +            dh_tmp, rsa_enc, rsa_sign, dsa_sign);
> >  #endif
> 
> IMO it's better to just remove it. It's unlikely anyone is using it since the
> build breaks. I opened a pull request (that includes another #if-related fix):

I've actually used this like last week, but it was in the 1.0.2
branch.


Kurt



More information about the openssl-dev mailing list