From 95a8266405f61b6927f8cef13b1fdfa0b5584274 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Fri, 21 Sep 2012 12:59:10 -0400 Subject: [PATCH] Fix: Wrong returned error code on UST enable event Instead of sending back a FATAL error, correctly notify the user of a failed UST enable event. The bug261 was not reproducible anymore but led to this fix. (Closes 261) Signed-off-by: David Goulet --- src/bin/lttng-sessiond/event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/lttng-sessiond/event.c b/src/bin/lttng-sessiond/event.c index ee3ebfe3b..2173e414a 100644 --- a/src/bin/lttng-sessiond/event.c +++ b/src/bin/lttng-sessiond/event.c @@ -414,7 +414,7 @@ int event_ust_enable_tracepoint(struct ltt_ust_session *usess, int domain, if (uevent == NULL) { uevent = trace_ust_create_event(event); if (uevent == NULL) { - ret = LTTNG_ERR_FATAL; + ret = LTTNG_ERR_UST_ENABLE_FAIL; goto error; } /* Valid to set it after the goto error since uevent is still NULL */ -- 2.34.1