Fix comments and enforce expected return values
[lttng-tools.git] / src / bin / lttng-sessiond / main.c
index 4e5771f03639b476748c97a459e8c7aab0829fee..631aa6b2d92e5e0d13aaa5a2d59072327b31eb69 100644 (file)
@@ -4077,14 +4077,14 @@ static void sighandler(int sig)
 {
        switch (sig) {
        case SIGPIPE:
-               DBG("SIGPIPE caugth");
+               DBG("SIGPIPE caught");
                return;
        case SIGINT:
-               DBG("SIGINT caugth");
+               DBG("SIGINT caught");
                stop_threads();
                break;
        case SIGTERM:
-               DBG("SIGTERM caugth");
+               DBG("SIGTERM caught");
                stop_threads();
                break;
        default:
This page took 0.025404 seconds and 4 git commands to generate.