From 21844599898aa8b44df6425914995e1b7214ff52 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 1 Jun 2009 23:15:31 +0400 Subject: [PATCH] * Fix url grabbing regexp to match urls like --- CMakeLists.txt | 2 +- src/url.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f744fff03..2d55565e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ PROJECT(rspamd C) SET(RSPAMD_VERSION_MAJOR 0) SET(RSPAMD_VERSION_MINOR 1) -SET(RSPAMD_VERSION_PATCH 2) +SET(RSPAMD_VERSION_PATCH 3) SET(RSPAMD_VERSION "${RSPAMD_VERSION_MAJOR}.${RSPAMD_VERSION_MINOR}.${RSPAMD_VERSION_PATCH}") SET(RSPAMD_MASTER_SITE_URL "http://cebka.pp.ru/hg/rspamd") diff --git a/src/url.c b/src/url.c index 875358ae0..e6a4a215c 100644 --- a/src/url.c +++ b/src/url.c @@ -64,7 +64,7 @@ static const char *text_url = "((https?|ftp)://)?" "(??!),.'\"\\]:])" "(?!@)" ")"; -static const char *html_url = "(?: src|href)=\"(" +static const char *html_url = "(?: src|href)=\"?(" "((https?|ftp)://)?" "(\\b(??!),.'\"\\]:])" "(?!@)" -"))\""; +"))\"?"; static short url_initialized = 0; GRegex *text_re, *html_re; -- 2.39.5