From: Jérémie Galarneau Date: Mon, 3 Aug 2015 20:48:16 +0000 (-0400) Subject: Set registration done Agent command version back to 0 X-Git-Tag: v2.7.0-rc2~164 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=7460a4a9f8c1041d46db205006e551b1838a8a5e;p=lttng-tools.git Set registration done Agent command version back to 0 The command version was used to indicate a workaround introducing a change of behavior in a minor version. 2.6 was the only version affected by this bug. Fixes #884 Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-sessiond/agent.c b/src/bin/lttng-sessiond/agent.c index 67ca60469..421ef0f9c 100644 --- a/src/bin/lttng-sessiond/agent.c +++ b/src/bin/lttng-sessiond/agent.c @@ -444,7 +444,7 @@ int agent_send_registration_done(struct agent_app *app) DBG("Agent sending registration done to app socket %d", app->sock->fd); - return send_header(app->sock, 0, AGENT_CMD_REG_DONE, 1); + return send_header(app->sock, 0, AGENT_CMD_REG_DONE, 0); } /*