Simplify define as we don't support MS-DOS anymore.
authorDr. Stephen Henson <steve@openssl.org>
Thu, 17 Mar 2016 00:29:57 +0000 (00:29 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Thu, 17 Mar 2016 14:29:01 +0000 (14:29 +0000)
Reviewed-by: Tim Hudson <tjh@openssl.org>
include/openssl/ssl.h

index e19a791a4dfcf2d22032622122980a730b0d66d6..d7a65860151dbee2d1bf8b97f38213376d84ae5c 100644 (file)
@@ -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)