From 7b5d4df5b0310fae9805458f5669616c62f1257d Mon Sep 17 00:00:00 2001 From: beck <> Date: Sat, 29 Apr 2017 22:31:42 +0000 Subject: Revert previous - we still want to do this, but I forgot about the installer and want to avoid the wrath of theo when he arrives home in a couple of hours :) --- src/lib/libssl/Makefile | 3 +-- src/lib/libssl/ssl_algs.c | 17 +++++------------ 2 files changed, 6 insertions(+), 14 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 7656e88cea..12a4b4c2fa 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.33 2017/04/29 22:22:24 beck Exp $ +# $OpenBSD: Makefile,v 1.34 2017/04/29 22:31:42 beck Exp $ .include .ifndef NOMAN @@ -19,7 +19,6 @@ CFLAGS+= -DLIBRESSL_INTERNAL CFLAGS+= -I${.CURDIR} LDADD+= -L${BSDOBJDIR}/lib/libcrypto -lcrypto -LDADD+= -L${BSDOBJDIR}/lib/libpthread -lpthread VERSION_SCRIPT= Symbols.map SYMBOL_LIST= ${.CURDIR}/Symbols.list diff --git a/src/lib/libssl/ssl_algs.c b/src/lib/libssl/ssl_algs.c index ab88b29cc1..ca84891e72 100644 --- a/src/lib/libssl/ssl_algs.c +++ b/src/lib/libssl/ssl_algs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_algs.c,v 1.25 2017/04/29 21:54:54 beck Exp $ */ +/* $OpenBSD: ssl_algs.c,v 1.26 2017/04/29 22:31:42 beck Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -60,15 +60,13 @@ #include #include -#include #include "ssl_locl.h" -pthread_once_t SSL_library_init_once = PTHREAD_ONCE_INIT; - -static void -SSL_library_init_internal(void) +int +SSL_library_init(void) { + #ifndef OPENSSL_NO_DES EVP_add_cipher(EVP_des_cbc()); EVP_add_cipher(EVP_des_ede3_cbc()); @@ -127,11 +125,6 @@ SSL_library_init_internal(void) #endif /* initialize cipher/digest methods table */ ssl_load_ciphers(); + return (1); } -int -SSL_library_init(void) -{ - pthread_once(&SSL_library_init_once, SSL_library_init_internal); - return 1; -} -- cgit v1.2.3-55-g6feb