X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Fmain.c;fp=src%2Fbin%2Flttng-relayd%2Fmain.c;h=a250100d12acc7e8ca87f6dc4108642f8c6b1a73;hp=10ce291978227acf5d5e35eb5e623cbba80b82fb;hb=8a82be4c62d09a7ef4792c0eed7c7903dfac8424;hpb=a02903c0743cebd1f51227905ee89e571b84acbc diff --git a/src/bin/lttng-relayd/main.c b/src/bin/lttng-relayd/main.c index 10ce29197..a250100d1 100644 --- a/src/bin/lttng-relayd/main.c +++ b/src/bin/lttng-relayd/main.c @@ -3105,20 +3105,20 @@ static int relay_trace_chunk_exists(const struct lttcomm_relayd_hdr *recv_hdr, bool chunk_exists; if (!session || !conn->version_check_done) { - ERR("Trying to close a trace chunk before version check"); + ERR("Trying to check for the existance of a trace chunk before version check"); ret = -1; goto end_no_reply; } if (session->major == 2 && session->minor < 11) { - ERR("Chunk close command is unsupported before 2.11"); + ERR("Chunk exists command is unsupported before 2.11"); ret = -1; goto end_no_reply; } header_view = lttng_buffer_view_from_view(payload, 0, sizeof(*msg)); if (!header_view.data) { - ERR("Failed to receive payload of chunk close command"); + ERR("Failed to receive payload of chunk exists command"); ret = -1; goto end_no_reply; }