]> granicus.if.org Git - icinga2/commitdiff
Add missing call for the base class' Stop() method
authorGunnar Beutner <gunnar.beutner@icinga.com>
Mon, 24 Oct 2016 06:40:12 +0000 (08:40 +0200)
committerGunnar Beutner <gunnar.beutner@icinga.com>
Mon, 24 Oct 2016 06:40:12 +0000 (08:40 +0200)
refs #11684

lib/remote/apilistener.cpp

index c76f63ec960eefb2c7a3e663ddb15d701aca568d..08a476e4af31661b70ed7f9074e68af6a46771d9 100644 (file)
@@ -166,6 +166,8 @@ void ApiListener::Start(bool runtimeCreated)
 
 void ApiListener::Stop(bool runtimeDeleted)
 {
+       ObjectImpl<ApiListener>::Stop(runtimeDeleted);
+
        boost::mutex::scoped_lock lock(m_LogLock);
        CloseLogFile();
 }