Fix enable-channel that did not handle correctly lttng domains
authorDavid Goulet <david.goulet@polymtl.ca>
Tue, 13 Sep 2011 16:58:33 +0000 (12:58 -0400)
committerDavid Goulet <david.goulet@polymtl.ca>
Tue, 13 Sep 2011 16:58:33 +0000 (12:58 -0400)
Signed-off-by: David Goulet <david.goulet@polymtl.ca>
lttng/commands/enable_channels.c

index d8ad2a77b67a548df98ac10c6077e5f46481642e..13511cc869803097edff9bc2542a35218b38e870 100644 (file)
@@ -119,6 +119,7 @@ static int enable_channel(char *session_name)
                dom.attr.pid = opt_pid;
                DBG("PID %d set to lttng handle", opt_pid);
        } else {
+               ERR("Please specify a tracer (--kernel or --userspace)");
                ret = CMD_NOT_IMPLEMENTED;
                goto error;
        }
@@ -127,9 +128,6 @@ static int enable_channel(char *session_name)
        if (handle == NULL) {
                ret = -1;
                goto error;
-       } else {
-               ERR("Please specify a tracer (--kernel or --userspace)");
-               goto error;
        }
 
        /* Strip channel list (format: chan1,chan2,...) */
This page took 0.027132 seconds and 5 git commands to generate.