From: David Goulet Date: Fri, 20 Jan 2012 20:54:18 +0000 (-0500) Subject: Fix DBG message grammatical error X-Git-Tag: v2.0-pre18~14 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=3cede4fe1597481f6cbf508ddf3d24e024405ed2 Fix DBG message grammatical error Signed-off-by: David Goulet --- diff --git a/src/bin/lttng-sessiond/main.c b/src/bin/lttng-sessiond/main.c index 82deb9b0e..521c78868 100644 --- a/src/bin/lttng-sessiond/main.c +++ b/src/bin/lttng-sessiond/main.c @@ -4169,14 +4169,14 @@ static void sighandler(int sig) { switch (sig) { case SIGPIPE: - DBG("SIGPIPE catched"); + DBG("SIGPIPE caugth"); return; case SIGINT: - DBG("SIGINT catched"); + DBG("SIGINT caugth"); stop_threads(); break; case SIGTERM: - DBG("SIGTERM catched"); + DBG("SIGTERM caugth"); stop_threads(); break; default: diff --git a/src/bin/lttng/lttng.c b/src/bin/lttng/lttng.c index a76a869a2..3181d9012 100644 --- a/src/bin/lttng/lttng.c +++ b/src/bin/lttng/lttng.c @@ -170,15 +170,15 @@ static void sighandler(int sig) { switch (sig) { case SIGTERM: - DBG("SIGTERM catched"); + DBG("SIGTERM caugth"); clean_exit(EXIT_FAILURE); break; case SIGCHLD: /* Notify is done */ - DBG("SIGCHLD catched"); + DBG("SIGCHLD caugth"); break; default: - DBG("Unknown signal %d catched", sig); + DBG("Unknown signal %d caugth", sig); break; }