From: Dr. Stephen Henson Date: Thu, 17 Mar 2016 00:29:57 +0000 (+0000) Subject: Simplify define as we don't support MS-DOS anymore. X-Git-Tag: OpenSSL_1_1_0-pre5~345 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a7e7bad1681e2607ba59855a3c9215df64b278c0;p=oweals%2Fopenssl.git Simplify define as we don't support MS-DOS anymore. Reviewed-by: Tim Hudson --- diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h index e19a791a4d..d7a6586015 100644 --- a/include/openssl/ssl.h +++ b/include/openssl/ssl.h @@ -646,13 +646,8 @@ __owur int SRP_Calc_A_param(SSL *s); # endif -# if defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_WIN32) -# define SSL_MAX_CERT_LIST_DEFAULT 1024*30 - /* 30k max cert list :-) */ -# else -# define SSL_MAX_CERT_LIST_DEFAULT 1024*100 - /* 100k max cert list :-) */ -# endif +/* 100k max cert list */ +# define SSL_MAX_CERT_LIST_DEFAULT 1024*100 # define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT (1024*20)