From 2f4292a81c2bf89b349f0e276c69616ac6e51164 Mon Sep 17 00:00:00 2001 From: Miloslav Trmač Date: Sat, 11 Aug 2012 09:48:10 +0200 Subject: Fix printing of some template options MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miloslav Trmač --- template.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/template.c b/template.c index 994a9029..32b8d561 100644 --- a/template.c +++ b/template.c @@ -1355,7 +1355,10 @@ void tplPrintList(rsconf_t *conf) dbgprintf("[format as CSV (RFC4180)]"); } if(pTpe->data.field.options.bJSON) { - dbgprintf("[format as JSON"); + dbgprintf("[format as JSON] "); + } + if(pTpe->data.field.options.bJSONf) { + dbgprintf("[format as JSON field] "); } if(pTpe->data.field.options.bDropLastLF) { dbgprintf("[drop last LF in msg] "); -- cgit