summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Thomson <martin.thomson@gmail.com>2015-03-05 11:03:05 -0800
committerMartin Thomson <martin.thomson@gmail.com>2015-03-05 11:03:05 -0800
commit5147263331ff13ea60564de218d4a792af6bfbb9 (patch)
treed5c910b9afb933a342d258cfe2444f9834533e3f
parent8beb43147f2bc467832a623e09b032c09331e698 (diff)
downloadnss-hg-5147263331ff13ea60564de218d4a792af6bfbb9.tar.gz
Bug 1140029 - Disable SSL 3 by default
-rw-r--r--lib/ssl/sslsock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/sslsock.c b/lib/ssl/sslsock.c
index 90bc45729..282bb85c5 100644
--- a/lib/ssl/sslsock.c
+++ b/lib/ssl/sslsock.c
@@ -89,7 +89,7 @@ static sslOptions ssl_defaults = {
* default range of enabled SSL/TLS protocols
*/
static SSLVersionRange versions_defaults_stream = {
- SSL_LIBRARY_VERSION_3_0,
+ SSL_LIBRARY_VERSION_TLS_1_0,
SSL_LIBRARY_VERSION_TLS_1_2
};