mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-26 23:24:09 +02:00
Use gai_strerror instead of Utility::FormatErrorNumber for getaddrinfo's error codes
fixes #6849
This commit is contained in:
parent
595728d024
commit
8256638fde
@ -63,7 +63,7 @@ void TcpSocket::Bind(const String& node, const String& service, int family)
|
||||
|
||||
if (rc != 0) {
|
||||
std::ostringstream msgbuf;
|
||||
msgbuf << "getaddrinfo() failed with return code " << rc << ", \"" << Utility::FormatErrorNumber(rc) << "\"";
|
||||
msgbuf << "getaddrinfo() failed with return code " << rc << ", \"" << gai_strerror(rc) << "\"";
|
||||
Log(LogCritical, "TcpSocket", msgbuf.str());
|
||||
|
||||
BOOST_THROW_EXCEPTION(socket_error()
|
||||
@ -156,7 +156,7 @@ void TcpSocket::Connect(const String& node, const String& service)
|
||||
|
||||
if (rc != 0) {
|
||||
std::ostringstream msgbuf;
|
||||
msgbuf << "getaddrinfo() failed with return code " << rc << ", \"" << Utility::FormatErrorNumber(rc) << "\"";
|
||||
msgbuf << "getaddrinfo() failed with return code " << rc << ", \"" << gai_strerror(rc) << "\"";
|
||||
Log(LogCritical, "TcpSocket", msgbuf.str());
|
||||
|
||||
BOOST_THROW_EXCEPTION(socket_error()
|
||||
|
Loading…
x
Reference in New Issue
Block a user