From: Jonathan Rajotte Date: Tue, 28 Jun 2016 20:11:07 +0000 (-0400) Subject: Fix: comment for errors propagation X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=8ad052589d4a783e83e80f6f6012c1ba57f8a173 Fix: comment for errors propagation Signed-off-by: Jonathan Rajotte --- diff --git a/src/bin/lttng/commands/create.c b/src/bin/lttng/commands/create.c index f3783a534..707f5ee7d 100644 --- a/src/bin/lttng/commands/create.c +++ b/src/bin/lttng/commands/create.c @@ -310,7 +310,7 @@ static int create_session_basic (const char *session_name, } if (ret < 0) { - /* Don't set ret so lttng can interpret the sessiond error. */ + /* Don't set ret so the sessiond error is propagated. */ switch (-ret) { case LTTNG_ERR_EXIST_SESS: WARN("Session %s already exists", session_name);