aboutsummaryrefslogtreecommitdiffstats
path: root/src/libserver/url.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libserver/url.c')
-rw-r--r--src/libserver/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libserver/url.c b/src/libserver/url.c
index f4f07d4bd..d05f04081 100644
--- a/src/libserver/url.c
+++ b/src/libserver/url.c
@@ -1842,7 +1842,7 @@ url_tld_end (struct url_callback_data *cb,
match->m_len = p - match->m_begin;
return TRUE;
}
- else if (*p == '/' || *p == ':' || is_url_end (*p) ||
+ else if (*p == '/' || *p == ':' || is_url_end (*p) || is_lwsp (*p) ||
(match->st != '<' && p == match->newline_pos)) {
/* Parse arguments, ports by normal way by url default function */
p = match->m_begin;