X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust%2Flttng-ust-abi.c;h=1361f5cc0cb6e4b7939c5f03ba6676195c34e9a1;hb=a56fd376c76b448c9f639b8ace821471a2fb7b40;hp=d5877c3d80591ad7ef408c597faaf426b9a6bc47;hpb=9fe043d73a3e2112f859ce1fa489021a96efecc9;p=lttng-ust.git diff --git a/liblttng-ust/lttng-ust-abi.c b/liblttng-ust/lttng-ust-abi.c index d5877c3d..1361f5cc 100644 --- a/liblttng-ust/lttng-ust-abi.c +++ b/liblttng-ust/lttng-ust-abi.c @@ -716,7 +716,8 @@ long lttng_event_notifier_enabler_cmd(int objd, unsigned int cmd, unsigned long struct lttng_event_notifier_enabler *event_notifier_enabler = objd_private(objd); switch (cmd) { case LTTNG_UST_FILTER: - return lttng_event_notifier_enabler_attach_bytecode(event_notifier_enabler, + return lttng_event_notifier_enabler_attach_filter_bytecode( + event_notifier_enabler, (struct lttng_ust_filter_bytecode_node *) arg); case LTTNG_UST_EXCLUSION: return lttng_event_notifier_enabler_attach_exclusion(event_notifier_enabler, @@ -1146,7 +1147,7 @@ long lttng_event_enabler_cmd(int objd, unsigned int cmd, unsigned long arg, { int ret; - ret = lttng_event_enabler_attach_bytecode(enabler, + ret = lttng_event_enabler_attach_filter_bytecode(enabler, (struct lttng_ust_filter_bytecode_node *) arg); if (ret) return ret;