X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fdestroy.c;h=53fe3aca13b676c6f94e4b64c912191bfb5bfe15;hb=1dac0189ed7311146ff2cfc6605bac81213ee90b;hp=50d5bb441a4476e8624a3cbfba095adaf2724d1a;hpb=65f25c661e03316f5f0cb4a035df518c875c17f8;p=lttng-tools.git diff --git a/src/bin/lttng/commands/destroy.c b/src/bin/lttng/commands/destroy.c index 50d5bb441..53fe3aca1 100644 --- a/src/bin/lttng/commands/destroy.c +++ b/src/bin/lttng/commands/destroy.c @@ -16,6 +16,7 @@ */ #define _GNU_SOURCE +#define _LGPL_SOURCE #include #include #include @@ -28,6 +29,7 @@ #include #include +#include static char *opt_session_name; static int opt_destroy_all; @@ -74,6 +76,7 @@ static void usage(FILE *ofp) static int destroy_session(struct lttng_session *session) { int ret; + char *session_name = NULL; ret = lttng_destroy_session(session->name); if (ret < 0) { @@ -89,7 +92,11 @@ static int destroy_session(struct lttng_session *session) } MSG("Session %s destroyed", session->name); - config_destroy_default(); + + session_name = get_session_name_quiet(); + if (session_name && !strncmp(session->name, session_name, NAME_MAX)) { + config_destroy_default(); + } if (lttng_opt_mi) { ret = mi_lttng_session(writer, session, 0); @@ -101,6 +108,7 @@ static int destroy_session(struct lttng_session *session) ret = CMD_SUCCESS; error: + free(session_name); return ret; } @@ -212,7 +220,7 @@ int cmd_destroy(int argc, const char **argv) } else { opt_session_name = (char *) poptGetArg(pc); - if (opt_session_name == NULL) { + if (!opt_session_name) { /* No session name specified, lookup default */ session_name = get_session_name(); if (session_name == NULL) {