diff options
Diffstat (limited to 'lib/libcrypto/hidden/openssl/x509.h')
-rw-r--r-- | lib/libcrypto/hidden/openssl/x509.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libcrypto/hidden/openssl/x509.h b/lib/libcrypto/hidden/openssl/x509.h index cdd09b40622..13bd5b533b1 100644 --- a/lib/libcrypto/hidden/openssl/x509.h +++ b/lib/libcrypto/hidden/openssl/x509.h @@ -1,4 +1,4 @@ -/* $OpenBSD: x509.h,v 1.2 2023/02/23 18:12:32 job Exp $ */ +/* $OpenBSD: x509.h,v 1.3 2023/07/05 21:14:54 bcook Exp $ */ /* * Copyright (c) 2022 Bob Beck <beck@openbsd.org> * @@ -18,7 +18,11 @@ #ifndef _LIBCRYPTO_X509_H #define _LIBCRYPTO_X509_H +#ifndef _MSC_VER #include_next <openssl/x509.h> +#else +#include "../include/openssl/x509.h" +#endif #include "crypto_namespace.h" LCRYPTO_USED(X509_CRL_up_ref); |