From: Gunnar Beutner Date: Tue, 11 Aug 2015 10:56:30 +0000 (+0200) Subject: Fix incorrect function name X-Git-Tag: v2.4.0~431 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec8cdcd5547da0b77a432378a8b9f68113785aaf;p=icinga2 Fix incorrect function name refs #9876 --- diff --git a/lib/remote/apilistener.cpp b/lib/remote/apilistener.cpp index 13d32abb6..5fd6ef9ad 100644 --- a/lib/remote/apilistener.cpp +++ b/lib/remote/apilistener.cpp @@ -265,7 +265,7 @@ void ApiListener::AddConnection(const Endpoint::Ptr& endpoint) void ApiListener::NewClientHandler(const Socket::Ptr& client, const String& hostname, ConnectionRole role) { try { - NewClientHandler(client, hostname, role); + NewClientHandlerInternal(client, hostname, role); } catch (const std::exception& ex) { Log(LogCritical, "ApiListener") << "Exception while handling new API client connection: " << DiagnosticInformation(ex);