summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2018-03-18 01:39:26 +0000
committertb <tb@openbsd.org>2018-03-18 01:39:26 +0000
commit2fd8e2d78fa0fec17652ba5fa409513341189357 (patch)
tree28d3d97ce3103b9e6f8ad5c5bd75275682491a6a
parentsync (diff)
downloadwireguard-openbsd-2fd8e2d78fa0fec17652ba5fa409513341189357.tar.xz
wireguard-openbsd-2fd8e2d78fa0fec17652ba5fa409513341189357.zip
Fix a typo: OPENSSL_INIT_LOAD_CONFIG doesn't have double underbars.
Found via port build failures reported by sthen. ok jsing
-rw-r--r--lib/libcrypto/crypto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/crypto.h b/lib/libcrypto/crypto.h
index 0eb29610b46..f13ce925841 100644
--- a/lib/libcrypto/crypto.h
+++ b/lib/libcrypto/crypto.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: crypto.h,v 1.43 2018/03/17 16:20:01 beck Exp $ */
+/* $OpenBSD: crypto.h,v 1.44 2018/03/18 01:39:26 tb Exp $ */
/* ====================================================================
* Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
*
@@ -555,7 +555,7 @@ void ERR_load_CRYPTO_strings(void);
* These are provided for compatibiliy, but have no effect
* on how LibreSSL is initialized.
*/
-#define OPENSSL_INIT__LOAD_CONFIG _OPENSSL_INIT_FLAG_NOOP
+#define OPENSSL_INIT_LOAD_CONFIG _OPENSSL_INIT_FLAG_NOOP
#define OPENSSL_INIT_NO_LOAD_CRYPTO_STRINGS _OPENSSL_INIT_FLAG_NOOP
#define OPENSSL_INIT_LOAD_CRYPTO_STRINGS _OPENSSL_INIT_FLAG_NOOP
#define OPENSSL_INIT_ADD_ALL_CIPHERS _OPENSSL_INIT_FLAG_NOOP