summaryrefslogtreecommitdiff
path: root/src/sysExec.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-12-14 01:18:16 +0000
committerChristian Pointner <equinox@anytun.org>2009-12-14 01:18:16 +0000
commit69ef9fc6b08d7cdaaea16e3951a75223ac6c595d (patch)
treea9eb69dac653fe2307fafdcdd660d0bd5d5377f5 /src/sysExec.cpp
parentremoved common stuff (moved to repo anytun-common) (diff)
fixed spelling error unkown != unknown
Diffstat (limited to 'src/sysExec.cpp')
-rw-r--r--src/sysExec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysExec.cpp b/src/sysExec.cpp
index 49c0cae..fc806fd 100644
--- a/src/sysExec.cpp
+++ b/src/sysExec.cpp
@@ -151,7 +151,7 @@ void waitForScript(std::string const& script, pid_t pid, int pipefd)
else if(WIFSIGNALED(status))
cLog.msg(Log::PRIO_NOTICE) << "script '" << script << "' terminated after signal " << WTERMSIG(status);
else
- cLog.msg(Log::PRIO_ERROR) << "executing script '" << script << "': unkown error";
+ cLog.msg(Log::PRIO_ERROR) << "executing script '" << script << "': unknown error";
close(pipefd);
}