From: Jérémie Galarneau Date: Wed, 7 Aug 2013 18:58:05 +0000 (-0400) Subject: Fix: LTTNG_ERR_NEED_ROOT_SESSIOND error message X-Git-Tag: v2.3.0-rc3~51 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=a8621b72212889dd024bb39cdb3bab7d54e73e19 Fix: LTTNG_ERR_NEED_ROOT_SESSIOND error message A root session daemon _and_ "tracing" group user membership are required to trace the kernel. Acked-by: Mathieu Desnoyers Signed-off-by: Jérémie Galarneau Signed-off-by: David Goulet --- diff --git a/src/common/error.c b/src/common/error.c index acfd6c678..42ed06fc8 100644 --- a/src/common/error.c +++ b/src/common/error.c @@ -82,7 +82,7 @@ static const char *error_string_array[] = { [ ERROR_INDEX(LTTNG_ERR_UST_EVENT_NOT_FOUND)] = "UST event not found", [ ERROR_INDEX(LTTNG_ERR_UST_CONTEXT_EXIST)] = "UST context already exist", [ ERROR_INDEX(LTTNG_ERR_UST_CONTEXT_INVAL)] = "UST invalid context", - [ ERROR_INDEX(LTTNG_ERR_NEED_ROOT_SESSIOND) ] = "Tracing the kernel requires a root lttng-sessiond daemon or \"tracing\" group user membership", + [ ERROR_INDEX(LTTNG_ERR_NEED_ROOT_SESSIOND) ] = "Tracing the kernel requires a root lttng-sessiond daemon and \"tracing\" group user membership", [ ERROR_INDEX(LTTNG_ERR_TRACE_ALREADY_STARTED) ] = "Tracing already started", [ ERROR_INDEX(LTTNG_ERR_TRACE_ALREADY_STOPPED) ] = "Tracing already stopped", [ ERROR_INDEX(LTTNG_ERR_KERN_EVENT_ENOSYS) ] = "Kernel event type not supported",