From: Jonathan Rajotte Date: Fri, 21 Jul 2017 15:09:14 +0000 (-0400) Subject: Fix: report error on session listing X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=70fa06448b863b3fdfa1407f61a2193505e6f9fb Fix: report error on session listing Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng/commands/destroy.c b/src/bin/lttng/commands/destroy.c index e0bafc475..0314b767e 100644 --- a/src/bin/lttng/commands/destroy.c +++ b/src/bin/lttng/commands/destroy.c @@ -226,7 +226,8 @@ int cmd_destroy(int argc, const char **argv) /* Recuperate all sessions for further operation */ count = lttng_list_sessions(&sessions); if (count < 0) { - command_ret = count; + ERR("%s", lttng_strerror(count)); + command_ret = CMD_ERROR; success = 0; goto mi_closing; }