diff options
Diffstat (limited to 'lib/libcrypto/x509/x_all.c')
-rw-r--r-- | lib/libcrypto/x509/x_all.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libcrypto/x509/x_all.c b/lib/libcrypto/x509/x_all.c index f01e47416db..edb5f520fac 100644 --- a/lib/libcrypto/x509/x_all.c +++ b/lib/libcrypto/x509/x_all.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x_all.c,v 1.17 2014/07/10 22:45:58 jsing Exp $ */ +/* $OpenBSD: x_all.c,v 1.18 2014/07/11 08:44:49 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -60,18 +60,18 @@ #include <openssl/opensslconf.h> -#include <openssl/stack.h> -#include "cryptlib.h" -#include <openssl/buffer.h> #include <openssl/asn1.h> +#include <openssl/buffer.h> #include <openssl/evp.h> +#include <openssl/stack.h> #include <openssl/x509.h> -#ifndef OPENSSL_NO_RSA -#include <openssl/rsa.h> -#endif + #ifndef OPENSSL_NO_DSA #include <openssl/dsa.h> #endif +#ifndef OPENSSL_NO_RSA +#include <openssl/rsa.h> +#endif int X509_verify(X509 *a, EVP_PKEY *r) |