diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-07 17:45:01 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-07 17:45:11 +0100 |
commit | 26bbfa3bba37719fb5cc72c8e9fac8f42bcd2d79 (patch) | |
tree | 4a5ced76d3f0aae4bfef02a021d0e010a333098f | |
parent | b0f83c9ee02452fd3ac6512769ab67287f66cf23 (diff) | |
download | rspamd-26bbfa3bba37719fb5cc72c8e9fac8f42bcd2d79.tar.gz rspamd-26bbfa3bba37719fb5cc72c8e9fac8f42bcd2d79.zip |
Fix stupid misprint.
-rw-r--r-- | src/libutil/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/http.c b/src/libutil/http.c index 6c9617ae5..6a9f6e6ce 100644 --- a/src/libutil/http.c +++ b/src/libutil/http.c @@ -1733,7 +1733,7 @@ rspamd_http_message_from_url (const gchar *url) } msg->host = rspamd_fstring_new_init (host, pu.field_data[UF_HOST].len); - msg->host = rspamd_fstring_append (msg->url, path, pathlen); + msg->host = rspamd_fstring_append (msg->host, path, pathlen); return msg; } |