From 5efdfc2b9bdcaea87eeba0923c68bb5690841067 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Thu, 23 Nov 2006 21:27:13 +0000 Subject: [PATCH] * fixed a bug with the public_clients feature. --- citadel/citserver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/citadel/citserver.c b/citadel/citserver.c index 95eab2fc6..6a5193f97 100644 --- a/citadel/citserver.c +++ b/citadel/citserver.c @@ -366,6 +366,7 @@ int is_public_client(void) if ((strlen(public_clients) + strlen(addrbuf) + 2) < sizeof(public_clients)) { + strcat(public_clients, "|"); strcat(public_clients, addrbuf); } } -- 2.39.2