From 21aa6b3769499a942c2f2206c9c0d0853ff22172 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 25 Jan 2016 10:17:15 +1100 Subject: [PATCH] Missing EOL on dropclient message to passthroughs --- src/connector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connector.c b/src/connector.c index 7576a8d8..2b69e170 100644 --- a/src/connector.c +++ b/src/connector.c @@ -1139,7 +1139,7 @@ static void drop_passthrough_client(cdata_t *cdata, const int64_t id) client_id = id & 0xffffffffll; /* We have a direct connection to the passthrough's connector so we * can send it any regular commands. */ - ASPRINTF(&msg, "dropclient=%"PRId64, client_id); + ASPRINTF(&msg, "dropclient=%"PRId64"\n", client_id); send_client(cdata, id, msg); }