From: Wilfried Göesgens Date: Thu, 23 Nov 2006 21:27:13 +0000 (+0000) Subject: * fixed a bug with the public_clients feature. X-Git-Tag: v7.86~3832 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=5efdfc2b9bdcaea87eeba0923c68bb5690841067;p=citadel.git * fixed a bug with the public_clients feature. --- 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); } }