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 _______________________________________________ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev
