commit 3ba77c4ef28c35a9f331606c7f531f4cf94e39c6
parent b910bfe858bab51334a6d623580383ec685324ee
Author: wwp <subscript@free.fr>
Date: Mon, 4 Oct 2021 10:12:36 +0200
Fix CID 1491198: wrong printf argument type.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/spamassassin/libspamc.c b/src/plugins/spamassassin/libspamc.c
@@ -919,7 +919,7 @@ _spamc_read_full_line(struct message *m, int flags, SSL * ssl, int sock,
}
}
- libspamc_log(flags, LOG_ERR, "spamd responded with line of %d bytes, dying", len);
+ libspamc_log(flags, LOG_ERR, "spamd responded with line of %lu bytes, dying", len);
failureval = EX_TOOBIG;
failure: