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.8.0-rc1~524 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=b26d1f5c53927cf45d381af27f955019850f2d87 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 9091a53d7..c321ae41f 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); } /*