From: Mathieu Desnoyers Date: Tue, 6 Dec 2011 21:21:18 +0000 (-0500) Subject: Update consumerd search paths comment X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=f806231fd652854bdf797fe6b129953b946e32f1 Update consumerd search paths comment Signed-off-by: Mathieu Desnoyers --- diff --git a/lttng-sessiond/main.c b/lttng-sessiond/main.c index a153b2351..dda9168bb 100644 --- a/lttng-sessiond/main.c +++ b/lttng-sessiond/main.c @@ -1527,9 +1527,10 @@ static pid_t spawn_consumerd(struct consumer_data *consumer_data) switch (consumer_data->type) { case LTTNG_CONSUMER_KERNEL: /* - * Find out which consumerd to execute. We will first - * try the 64-bit path, then the 32-bit one, then - * fallback on sessiond's installation directory. + * Find out which consumerd to execute. We will + * first try the 64-bit path, then the + * sessiond's installation directory, and + * fallback on the 32-bit one, */ if (stat(consumerd64_bin, &st) == 0) { consumer_to_use = consumerd64_bin;