Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2002-10-29 20:00:33 +0300
committerGeoff Thorpe <geoff@openssl.org>2002-10-29 20:00:33 +0300
commit74174b9d056be33e2ebda90302691f837dde13a4 (patch)
tree7a752103a8b785594131fa09c6eab28f23550615 /ssl
parent89eda1fc01554dc3ba69968929b57c1714b109ce (diff)
Bodo spotted this keyslip in my patch to 0.9.7-stable.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl.h b/ssl/ssl.h
index 76e590ae2c..bb36902471 100644
--- a/ssl/ssl.h
+++ b/ssl/ssl.h
@@ -720,7 +720,7 @@ struct ssl_ctx_st
#define SSL_SESS_CACHE_NO_AUTO_CLEAR 0x0080
/* enough comments already ... see SSL_CTX_set_session_cache_mode(3) */
#define SSL_SESS_CACHE_NO_INTERNAL_LOOKUP 0x0100
-#define SSL_SESS_CACHE_NO_INTERNAL_STORE 0x0100
+#define SSL_SESS_CACHE_NO_INTERNAL_STORE 0x0200
#define SSL_SESS_CACHE_NO_INTERNAL \
(SSL_SESS_CACHE_NO_INTERNAL_LOOKUP|SSL_SESS_CACHE_NO_INTERNAL_STORE)