From: Vsevolod Stakhov Date: Mon, 4 Mar 2019 20:07:31 +0000 (+0000) Subject: [Minor] Fix format string X-Git-Tag: 1.9.0~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=def0676452f3c2c993226a12ae377362e29e7b72;p=thirdparty%2Frspamd.git [Minor] Fix format string --- diff --git a/src/libutil/http_connection.c b/src/libutil/http_connection.c index aea13522da..d597829974 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) {