]> source.dussan.org Git - rspamd.git/commitdiff
Fix url parser invocation.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 2 Dec 2014 13:42:53 +0000 (13:42 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 2 Dec 2014 13:42:53 +0000 (13:42 +0000)
src/libutil/http.c

index 70564668c89b037bc53cdc7670722d578783564f..b994907df6f3b9deb1506069c71dcd22e87d37cd 100644 (file)
@@ -1070,7 +1070,7 @@ rspamd_http_message_from_url (const gchar *url)
        }
 
        memset (&pu, 0, sizeof (pu));
-       if (http_parser_parse_url (url, strlen (url), TRUE, &pu) != 0) {
+       if (http_parser_parse_url (url, strlen (url), FALSE, &pu) != 0) {
                msg_warn ("cannot parse URL: %s", url);
                return NULL;
        }