From: Vsevolod Stakhov Date: Mon, 22 Jul 2019 15:26:47 +0000 (+0100) Subject: [Minor] Fix commas in client X-Git-Tag: 2.0~510 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2e0bd0875faf80e820d65b5496d6bee5ddd7c4c5;p=rspamd.git [Minor] Fix commas in client --- 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,