]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix format string
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 4 Mar 2019 20:07:31 +0000 (20:07 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 4 Mar 2019 20:07:31 +0000 (20:07 +0000)
src/libutil/http_connection.c

index aea13522dab374ee5532bb5c0a83c4724a0a9236..d59782997429eafb7f38dbfab71ab06c97112723 100644 (file)
@@ -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) {