From mboxrd@z Thu Jan 1 00:00:00 1970 From: jonathan.rajotte-julien@efficios.com (Jonathan Rajotte) Date: Fri, 24 Jul 2015 17:43:00 -0400 Subject: [lttng-dev] [PATCH lttng-tools 2/2] Fix: do not spawn sessiond on track/untrack commands In-Reply-To: <1437774180-32746-1-git-send-email-jonathan.rajotte-julien@efficios.com> References: <1437774180-32746-1-git-send-email-jonathan.rajotte-julien@efficios.com> Message-ID: <1437774180-32746-2-git-send-email-jonathan.rajotte-julien@efficios.com> Signed-off-by: Jonathan Rajotte --- src/bin/lttng/lttng.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bin/lttng/lttng.c b/src/bin/lttng/lttng.c index 13c7732..4cc320c 100644 --- a/src/bin/lttng/lttng.c +++ b/src/bin/lttng/lttng.c @@ -432,7 +432,9 @@ static int check_args_no_sessiond(int argc, char **argv) strncmp(argv[i], "--list-options", sizeof("--list-options")) == 0 || strncmp(argv[i], "--list-commands", sizeof("--list-commands")) == 0 || strncmp(argv[i], "version", sizeof("version")) == 0 || - strncmp(argv[i], "view", sizeof("view")) == 0) { + strncmp(argv[i], "view", sizeof("view")) == 0 || + strncmp(argv[i], "track", sizeof("track")) == 0 || + strncmp(argv[i], "untrack", sizeof("untrack")) == 0) { return 1; } } -- 2.1.4