Fix: send disable ALL command code if event is *
authorDavid Goulet <dgoulet@efficios.com>
Fri, 5 Sep 2014 16:12:38 +0000 (12:12 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Fri, 5 Sep 2014 16:12:38 +0000 (12:12 -0400)
$ lttng disable-event -a
and
$ lttng disable-event '*'

Both commands should do the same meaning send the DISABLE_EVENT_ALL
command to the session daemon.

Signed-off-by: David Goulet <dgoulet@efficios.com>
src/lib/lttng-ctl/lttng-ctl.c

index f83d053aa00859da61a4e6cd8a9ae0ab465c7148..cacae13bb84da3e4033a016c244cbfa970d7172c 100644 (file)
@@ -1067,7 +1067,7 @@ int lttng_disable_event(struct lttng_handle *handle, const char *name,
 
        lttng_ctl_copy_lttng_domain(&lsm.domain, &handle->domain);
 
-       if (name != NULL) {
+       if (name != NULL && *name != '*') {
                lttng_ctl_copy_string(lsm.u.disable.name, name,
                                sizeof(lsm.u.disable.name));
                lsm.cmd_type = LTTNG_DISABLE_EVENT;
This page took 0.032898 seconds and 5 git commands to generate.