]> granicus.if.org Git - icinga2/commitdiff
Minor styleguide 6709/head
authorMichael Friedrich <michael.friedrich@icinga.com>
Mon, 29 Oct 2018 12:45:18 +0000 (13:45 +0100)
committerMichael Friedrich <michael.friedrich@icinga.com>
Mon, 29 Oct 2018 12:45:18 +0000 (13:45 +0100)
lib/methods/icingachecktask.cpp

index 75f301f5fe273d2528330514789c5a68ac384181..c5832aebe8115a0ff1391eab25e390588ba966e5 100644 (file)
@@ -175,9 +175,10 @@ void IcingaCheckTask::ScriptFunc(const Checkable::Ptr& checkable, const CheckRes
        }
 
        /* Extract the version number of the running Icinga2 instance.
-        * We assume that appVersion will allways be something like 'v2.10.1-8-gaebe6da' and we want to extract '2.10.1'. */
+        * We assume that appVersion will allways be something like 'v2.10.1-8-gaebe6da' and we want to extract '2.10.1'.
+        */
        int endOfVersionNumber = appVersion.FindFirstOf("-") - 1;
-       String parsedAppVersion = appVersion.SubStr(1,endOfVersionNumber);
+       String parsedAppVersion = appVersion.SubStr(1, endOfVersionNumber);
 
        /* Return an error if the version is less than specified (optional). */
        if (missingIcingaMinVersion.IsEmpty() && !icingaMinVersion.IsEmpty() && Utility::CompareVersion(icingaMinVersion, parsedAppVersion) < 0) {