From: Bodo Möller Date: Thu, 22 Mar 2001 15:13:43 +0000 (+0000) Subject: Add missing '#ifndef NO_DSA'. X-Git-Tag: OpenSSL_0_9_6a-beta3~30 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2006dd12d693499ecbf532748ecbb819868f6951;p=oweals%2Fopenssl.git Add missing '#ifndef NO_DSA'. Submitted by: "Hellan,Kim KHE" --- diff --git a/apps/x509.c b/apps/x509.c index 76dd66db86..9d09d75889 100644 --- a/apps/x509.c +++ b/apps/x509.c @@ -867,8 +867,10 @@ bad: BIO_printf(bio_err,"Generating certificate request\n"); +#ifndef NO_DSA if (pk->type == EVP_PKEY_DSA) digest=EVP_dss1(); +#endif rq=X509_to_X509_REQ(x,pk,digest); EVP_PKEY_free(pk);