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


The following commit(s) were added to refs/heads/master by this push:
     new e667d05  Renamed another instance of 'hostname()'.
e667d05 is described below

commit e667d051ba7ab24ca63b2fbff6f65091a47c02d2
Author: Benno Evers <[email protected]>
AuthorDate: Sun Jun 23 13:48:43 2019 +0200

    Renamed another instance of 'hostname()'.
    
    Renamed one final instance of `Address::hostname()`
    to `Address::lookup_hostname()` that was missed in the
    previous commit.
---
 3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp 
b/3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp
index 29a1bf7..7e2229a 100644
--- a/3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp
+++ b/3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp
@@ -546,7 +546,7 @@ Future<Nothing> LibeventSSLSocketImpl::connect(const 
Address& address)
     // connecting to in order to properly verify the certificate
     // later.
     const Try<string> hostname =
-      network::convert<inet::Address>(address)->hostname();
+      network::convert<inet::Address>(address)->lookup_hostname();
 
     if (hostname.isError()) {
       VLOG(2) << "Could not determine hostname of peer: " << hostname.error();

Reply via email to