From def0676452f3c2c993226a12ae377362e29e7b72 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 4 Mar 2019 20:07:31 +0000 Subject: [PATCH] [Minor] Fix format string --- src/libutil/http_connection.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libutil/http_connection.c b/src/libutil/http_connection.c index aea13522d..d59782997 100644 --- a/src/libutil/http_connection.c +++ b/src/libutil/http_connection.c @@ -1646,7 +1646,7 @@ rspamd_http_message_write_header (const gchar* mime_type, gboolean encrypted, rspamd_printf_fstring (buf, "%s %s HTTP/1.0\r\n" "Content-Length: %z\r\n" - "Content-Type: application/octet-stream\r\n", + "Content-Type: application/octet-stream\r\n" "Connection: %s\r\n", "POST", "/post", @@ -1658,7 +1658,9 @@ rspamd_http_message_write_header (const gchar* mime_type, gboolean encrypted, "%s %V HTTP/1.0\r\n" "Content-Length: %z\r\n" "Connection: %s\r\n", - http_method_str (msg->method), msg->url, bodylen, + http_method_str (msg->method), + msg->url, + bodylen, conn_type); if (bodylen > 0) { -- 2.39.5