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:26:10 UTC

[mesos] 01/03: 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 1.9.x
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 01cb7d259ebc13861653892a7b5800fe108f7be7
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 5854711..fff01da 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();