Fix: report error on session listing
[lttng-tools.git] / src / bin / lttng / commands / destroy.c
index e0bafc475b6451cd4e3d0c8cd6b79583609936f4..02c7139c3547e4e9a4dff2516e223597081faa76 100644 (file)
@@ -35,6 +35,12 @@ static char *opt_session_name;
 static int opt_destroy_all;
 static int opt_no_wait;
 
+#ifdef LTTNG_EMBED_HELP
+static const char help_msg[] =
+#include <lttng-destroy.1.h>
+;
+#endif
+
 /* Mi writer */
 static struct mi_writer *writer;
 
@@ -226,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;
        }
This page took 0.023643 seconds and 4 git commands to generate.