Fix: send disable ALL command code if event is *
[lttng-tools.git] / 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.025342 seconds and 5 git commands to generate.