This is an automated email from the ASF dual-hosted git repository.

bennoe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 540d9da5abc52f1e02d360478d2781ddf80d1599
Author: Benno Evers <[email protected]>
AuthorDate: Wed May 29 14:02:05 2019 +0200

    Updated some flag description for libprocess SSL flags.
    
    Changed `SSL` to `TLS` in some flag descriptions where the
    flag was referring to versions of the TLS protocol.
    
    Review: https://reviews.apache.org/r/70747
---
 3rdparty/libprocess/src/openssl.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/3rdparty/libprocess/src/openssl.cpp 
b/3rdparty/libprocess/src/openssl.cpp
index e7dbd67..19d25a8 100644
--- a/3rdparty/libprocess/src/openssl.cpp
+++ b/3rdparty/libprocess/src/openssl.cpp
@@ -147,22 +147,22 @@ Flags::Flags()
 
   add(&Flags::enable_tls_v1_0,
       "enable_tls_v1_0",
-      "Enable SSLV1.0.",
+      "Enable TLSv1.0.",
       false);
 
   add(&Flags::enable_tls_v1_1,
       "enable_tls_v1_1",
-      "Enable SSLV1.1.",
+      "Enable TLSv1.1.",
       false);
 
   add(&Flags::enable_tls_v1_2,
       "enable_tls_v1_2",
-      "Enable SSLV1.2.",
+      "Enable TLSv1.2.",
       true);
 
   add(&Flags::enable_tls_v1_3,
       "enable_tls_v1_3",
-      "Enable SSLV1.3.",
+      "Enable TLSv1.3.",
       false);
 }
 

Reply via email to