diff options
-rwxr-xr-x | src/configure | 2 | ||||
-rw-r--r-- | src/signalController.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/configure b/src/configure index 3194d74..24dcd4e 100755 --- a/src/configure +++ b/src/configure @@ -156,7 +156,7 @@ case $TARGET in LDFLAGS=$LDFLAGS' -L/usr/local/lib' ;; *) - echo "Plattform not supported" + echo "platform not supported" exit 1 ;; esac diff --git a/src/signalController.cpp b/src/signalController.cpp index b37e225..f298e72 100644 --- a/src/signalController.cpp +++ b/src/signalController.cpp @@ -91,7 +91,7 @@ int SigHupHandler::handle() int SigTermHandler::handle() { - cLog.msg(Log::PRIO_NOTICE) << "SIG-Term caughtm, exiting"; + cLog.msg(Log::PRIO_NOTICE) << "SIG-Term caught, exiting"; return 1; } |