From: David Goulet Date: Tue, 28 May 2013 17:06:38 +0000 (-0400) Subject: Fix: set channel key to message on notify channel X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=f21dae485bbd4a21104eff49a80b59ce25054bc2 Fix: set channel key to message on notify channel Signed-off-by: David Goulet --- diff --git a/src/common/consumer.c b/src/common/consumer.c index 5ca2e7bad..b5fe98316 100644 --- a/src/common/consumer.c +++ b/src/common/consumer.c @@ -102,6 +102,7 @@ static void notify_channel_pipe(struct lttng_consumer_local_data *ctx, msg.action = action; msg.chan = chan; + msg.key = key; do { ret = write(ctx->consumer_channel_pipe[1], &msg, sizeof(msg)); } while (ret < 0 && errno == EINTR);