From: Michael Tremer Date: Mon, 20 Oct 2025 14:28:39 +0000 (+0000) Subject: queue: Don't allow colons in object names X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f984e14c2017b1ab1fb33fa70a4381657eda0c22;p=telemetry.git queue: Don't allow colons in object names This breaks generating graphs where colons are used as delimiter. Signed-off-by: Michael Tremer --- diff --git a/src/daemon/queue.c b/src/daemon/queue.c index 5edc6d9..0459bd8 100644 --- a/src/daemon/queue.c +++ b/src/daemon/queue.c @@ -274,6 +274,10 @@ static int td_queue_valid_object(td_queue* queue, const char* object) { case '\'': break; + // Colons are now allowed + case ':': + break; + // The rest is allowed default: continue;