mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 13:16:45 +02:00
20 lines
414 B
Diff
20 lines
414 B
Diff
--- a/libmailutils/diag/debug.c
|
|
+++ b/libmailutils/diag/debug.c
|
|
@@ -511,7 +511,7 @@
|
|
{
|
|
if (delim)
|
|
{
|
|
- rc = mu_stream_printf (str, delim);
|
|
+ rc = mu_stream_printf (str, "%s", delim);
|
|
if (rc)
|
|
break;
|
|
}
|
|
@@ -564,7 +564,7 @@
|
|
{
|
|
if (delim)
|
|
{
|
|
- rc = mu_stream_printf (str, delim);
|
|
+ rc = mu_stream_printf (str, "%s", delim);
|
|
if (rc)
|
|
break;
|
|
}
|