From ec8cdcd5547da0b77a432378a8b9f68113785aaf Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 11 Aug 2015 12:56:30 +0200 Subject: [PATCH] Fix incorrect function name refs #9876 --- lib/remote/apilistener.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1