Fix: "Any" loglevel's value is -1 and not 0
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl.c
index 0041969657e18089c8a957c941924363a752daaf..4a0a07b14ec1a08faba8c2b94199f2ef7a6e7f54 100644 (file)
@@ -1216,6 +1216,7 @@ int lttng_disable_event(struct lttng_handle *handle, const char *name,
        struct lttng_event ev;
 
        memset(&ev, 0, sizeof(ev));
+       ev.loglevel = -1;
        ev.type = LTTNG_EVENT_ALL;
        lttng_ctl_copy_string(ev.name, name, sizeof(ev.name));
        return lttng_disable_event_ext(handle, &ev, channel_name, NULL);
This page took 0.023841 seconds and 4 git commands to generate.