summaryrefslogtreecommitdiffstats
path: root/src/postqueue
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 18:56:32 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-08 18:56:32 +0000
commitebd65af51f3d02965e7e98acd34ff00715adca44 (patch)
treeaeaa6434cfd8492735bca8402ef3a15f81ffafda /src/postqueue
parentAdding debian version 3.7.10-0+deb12u1. (diff)
downloadpostfix-ebd65af51f3d02965e7e98acd34ff00715adca44.tar.xz
postfix-ebd65af51f3d02965e7e98acd34ff00715adca44.zip
Merging upstream version 3.7.11.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/postqueue')
-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 {