From: David Goulet Date: Tue, 25 Feb 2014 17:42:04 +0000 (-0500) Subject: Fix: lttng list -u should only list UST X-Git-Tag: v2.3.2~7 X-Git-Url: http://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=09ee8fc1ae09692dc0544a3fff8a0e69f40a966a Fix: lttng list -u should only list UST Fixes #654 Signed-off-by: David Goulet --- diff --git a/src/bin/lttng/commands/list.c b/src/bin/lttng/commands/list.c index fc618a5bb..fb034a3da 100644 --- a/src/bin/lttng/commands/list.c +++ b/src/bin/lttng/commands/list.c @@ -801,7 +801,7 @@ int cmd_list(int argc, const char **argv) goto end; } - if (opt_kernel) { + if (opt_kernel || opt_userspace) { /* Channel listing */ ret = list_channels(opt_channel); if (ret < 0) {