summaryrefslogtreecommitdiffstats
path: root/src/postqueue/showq_json.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 10:22:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 10:22:01 +0000
commita8124680264223db14cd09a7e3a763a8309faf54 (patch)
treeea37b6dc47f4cb0d95db48b8b4569066112e1cd0 /src/postqueue/showq_json.c
parentReleasing progress-linux version 3.7.10-0+deb12u1~progress6.99u1. (diff)
downloadpostfix-a8124680264223db14cd09a7e3a763a8309faf54.tar.xz
postfix-a8124680264223db14cd09a7e3a763a8309faf54.zip
Merging upstream version 3.7.11.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/postqueue/showq_json.c')
-rw-r--r--src/postqueue/showq_json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/postqueue/showq_json.c b/src/postqueue/showq_json.c
index fc205c7..db79404 100644
--- a/src/postqueue/showq_json.c
+++ b/src/postqueue/showq_json.c
@@ -96,7 +96,7 @@ static char *json_quote(VSTRING *result, const char *text)
VSTRING_ADDCH(result, 't');
break;
default:
- vstring_sprintf(result, "\\u%04X", ch);
+ vstring_sprintf_append(result, "\\u%04X", ch);
break;
}
} else {