From d36bcdf5ca819f1f8efb5eb0897f80864e110ad7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Fri, 14 May 1999 11:57:17 +0000 Subject: [PATCH] Fix cryptlib.c. Submitted by: Reviewed by: PR: --- crypto/cryptlib.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c index 2a008729fb..d601509638 100644 --- a/crypto/cryptlib.c +++ b/crypto/cryptlib.c @@ -84,12 +84,16 @@ static const char* lock_names[CRYPTO_NUM_LOCKS] = "ssl_ctx", "ssl_cert", "ssl_session", + "ssl_sess_cert", "ssl", "rand", "debug_malloc", "BIO", "bio_gethostbyname", "RSA_blinding", +#if CRYPTO_NUM_LOCKS != 22 +# error "Inconsistency between crypto.h and cryptlic.c" +#endif }; static STACK *app_locks=NULL; -- 2.34.1