From: Vsevolod Stakhov Date: Fri, 25 Feb 2011 14:47:31 +0000 (+0300) Subject: Do not write warning about normal urls. X-Git-Tag: 0.3.7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6581c013d34136dab20b78a0ff8c1e1f9deec68d;p=thirdparty%2Frspamd.git Do not write warning about normal urls. --- diff --git a/src/url.c b/src/url.c index 083ceecba3..8282f92172 100644 --- a/src/url.c +++ b/src/url.c @@ -1199,7 +1199,7 @@ url_parse_text (memory_pool_t * pool, struct worker_task *task, struct mime_text } } } - else { + else if (rc != URI_ERRNO_OK) { msg_info ("extract of url '%s' failed: %s", url_str, url_strerror (rc)); } }