You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2019/09/20 18:22:24 UTC

[mesos] 01/02: Removed an outdated reference to the 'libprocess' hostname validation.

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 8595a52fa70016f6babb19ec1465c3bbae73f30a
Author: Benno Evers <be...@mesosphere.com>
AuthorDate: Tue Sep 17 14:02:39 2019 +0200

    Removed an outdated reference to the 'libprocess' hostname validation.
    
    Removed a reference to the 'libprocess' hostname validation scheme,
    which was renamed to 'legacy' during development.
    
    Review: https://reviews.apache.org/r/71496
---
 3rdparty/libprocess/src/openssl.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/3rdparty/libprocess/src/openssl.cpp b/3rdparty/libprocess/src/openssl.cpp
index 54d47cd..98824f7 100644
--- a/3rdparty/libprocess/src/openssl.cpp
+++ b/3rdparty/libprocess/src/openssl.cpp
@@ -840,7 +840,7 @@ Try<Nothing> verify(
   // the peer hostname using a reverse DNS lookup.
   Option<std::string> peer_hostname = hostname;
   if (ip.isSome()) {
-    VLOG(1) << "Doing rDNS lookup for 'libprocess' hostname validation";
+    VLOG(1) << "Doing rDNS lookup for 'legacy' hostname validation";
     Stopwatch watch;
 
     watch.start();