summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-03-17 00:29:57 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-03-17 14:29:01 +0000
commita7e7bad1681e2607ba59855a3c9215df64b278c0 (patch)
tree383548251049de69bcf13c72135b9a101cdbb49b /include
parenta717738b45fa7ae90cf3dac0870b8d1ea2a8e173 (diff)
Simplify define as we don't support MS-DOS anymore.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/ssl.h9
1 files changed, 2 insertions, 7 deletions
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)