From 494f6dde36a9dc1d3b3bb8d38a5a9b0e42cd73bb Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Thu, 22 Jan 2015 05:55:00 -0800 Subject: [PATCH] Fix typos in rev.13864 We do not use the "SSL_OP_" OpenSSL symbol prefix in squid.conf UI, just name the option. --- src/cf.data.pre | 2 +- src/ssl/support.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cf.data.pre b/src/cf.data.pre index 322f0918db..221559ce4e 100644 --- a/src/cf.data.pre +++ b/src/cf.data.pre @@ -1808,7 +1808,7 @@ DOC_START NO_TLSv1_2 Disallow the use of TLSv1.2 SINGLE_DH_USE Always create a new key when using temporary/ephemeral DH key exchanges - SSL_OP_NO_TICKET Disables TLS tickets extension + NO_TICKET Disables TLS tickets extension ALL Enable various bug workarounds suggested as "harmless" by OpenSSL Be warned that this reduces SSL/TLS diff --git a/src/ssl/support.cc b/src/ssl/support.cc index f174090b30..3dae5b006a 100644 --- a/src/ssl/support.cc +++ b/src/ssl/support.cc @@ -460,7 +460,7 @@ ssl_options[] = { #endif #if SSL_OP_NO_TICKET { - "SSL_OP_NO_TICKET", SSL_OP_NO_TICKET + "NO_TICKET", SSL_OP_NO_TICKET }, #endif { -- 2.47.3