From 2e0bd0875faf80e820d65b5496d6bee5ddd7c4c5 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 22 Jul 2019 16:26:47 +0100 Subject: [PATCH] [Minor] Fix commas in client --- src/client/rspamc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/rspamc.c b/src/client/rspamc.c index abea78da7..303669405 100644 --- a/src/client/rspamc.c +++ b/src/client/rspamc.c @@ -80,7 +80,7 @@ static gint retcode = EXIT_SUCCESS; } while (0) #define ADD_CLIENT_FLAG(str, n) do { \ - g_string_append ((str), (n)); \ + g_string_append ((str), n ","); \ } while (0) static gboolean rspamc_password_callback (const gchar *option_name, -- 2.39.5