diff options
Diffstat (limited to 'lib/libcrypto/dsa/dsa_pmeth.c')
-rw-r--r-- | lib/libcrypto/dsa/dsa_pmeth.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/libcrypto/dsa/dsa_pmeth.c b/lib/libcrypto/dsa/dsa_pmeth.c index 2e44e8d5dd5..c7a2edfc94a 100644 --- a/lib/libcrypto/dsa/dsa_pmeth.c +++ b/lib/libcrypto/dsa/dsa_pmeth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsa_pmeth.c,v 1.9 2014/07/10 13:58:22 jsing Exp $ */ +/* $OpenBSD: dsa_pmeth.c,v 1.10 2014/07/11 08:44:48 jsing Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -60,13 +60,14 @@ #include <stdio.h> #include <string.h> -#include "cryptlib.h" #include <openssl/asn1t.h> -#include <openssl/x509.h> -#include <openssl/evp.h> #include <openssl/bn.h> -#include "evp_locl.h" +#include <openssl/err.h> +#include <openssl/evp.h> +#include <openssl/x509.h> + #include "dsa_locl.h" +#include "evp_locl.h" /* DSA pkey context structure */ |