From: David Goulet Date: Tue, 11 Feb 2014 21:36:30 +0000 (-0500) Subject: Fix: wrong data structure used in commit df41f83 X-Git-Tag: v2.5.0-rc1~181 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=f46b2ce6671c1c59d1e0f212f2020f2e26ca9929 Fix: wrong data structure used in commit df41f83 Signed-off-by: David Goulet --- diff --git a/src/bin/lttng-relayd/live.c b/src/bin/lttng-relayd/live.c index 34114ad33..292f0601e 100644 --- a/src/bin/lttng-relayd/live.c +++ b/src/bin/lttng-relayd/live.c @@ -694,7 +694,7 @@ int viewer_connect(struct relay_connection *conn) health_code_update(); - memset(&msg, 0, sizeof(msg)); + memset(&reply, 0, sizeof(reply)); reply.major = RELAYD_VERSION_COMM_MAJOR; reply.minor = RELAYD_VERSION_COMM_MINOR;