From 56c3ec9ea83605c2e145d3d268fc9ffd005d8f94 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Fri, 21 Jul 2017 11:09:14 -0400 Subject: [PATCH] Fix: report error on session listing MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau --- src/bin/lttng/commands/destroy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/lttng/commands/destroy.c b/src/bin/lttng/commands/destroy.c index 0e603e13c..02c7139c3 100644 --- a/src/bin/lttng/commands/destroy.c +++ b/src/bin/lttng/commands/destroy.c @@ -232,7 +232,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; } -- 2.34.1