Fix compiler warnings in Service::ProcessCheckResult.

Refs #5349
This commit is contained in:
Gunnar Beutner 2013-12-17 07:55:46 +01:00
parent 53c1434700
commit ddf83f33d2
1 changed files with 3 additions and 0 deletions

View File

@ -285,6 +285,9 @@ void Service::ProcessCheckResult(const CheckResult::Ptr& cr, const String& autho
recovery = false;
switch (cr->GetState()) {
case StateOK:
/* Nothing to do here. */
break;
case StateWarning:
SetLastStateWarning(Utility::GetTime());
break;