From: Jonathan Rajotte Date: Fri, 7 Sep 2018 19:18:37 +0000 (-0400) Subject: Fix: use LTTNG_VIEWER_ATTACH_UNK to report a closed session X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=06079f15b69b07d67b84f9fe84b028624e68e333 Fix: use LTTNG_VIEWER_ATTACH_UNK to report a closed session LTTNG_VIEWER_NEW_STREAMS_HUP is not a valid error number for the LTTNG_VIEWER_ATTACH_SESSION command. This result in erroneous error reporting on the client side. Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-relayd/live.c b/src/bin/lttng-relayd/live.c index 6f50afc6c..bc0e4529a 100644 --- a/src/bin/lttng-relayd/live.c +++ b/src/bin/lttng-relayd/live.c @@ -1089,7 +1089,7 @@ int viewer_attach_session(struct relay_connection *conn) if (closed) { send_streams = 0; response.streams_count = 0; - response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_HUP); + response.status = htobe32(LTTNG_VIEWER_ATTACH_UNK); goto send_reply; }