summaryrefslogtreecommitdiff
path: root/src/sysexec.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysexec.hpp')
-rw-r--r--src/sysexec.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sysexec.hpp b/src/sysexec.hpp
index 2883102..0730cea 100644
--- a/src/sysexec.hpp
+++ b/src/sysexec.hpp
@@ -60,8 +60,10 @@ int execScript(std::string const& script, std::string const& ifname, std::string
waitpid(pid, &status, 0);
if(WIFEXITED(status))
cLog.msg(Log::PRIO_NOTICE) << "script '" << script << "' returned " << WEXITSTATUS(status);
- if(WIFSIGNALED(status))
+ else if(WIFSIGNALED(status))
cLog.msg(Log::PRIO_NOTICE) << "script '" << script << "' terminated after signal " << WTERMSIG(status);
+ else
+ cLog.msg(Log::PRIO_ERR) << "executing script: unkown error";
return status;
}