Browse Source

[Minor] One more fix...

tags/1.7.6
Vsevolod Stakhov 6 years ago
parent
commit
0d4bbf0f00
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libserver/url.c

+ 1
- 1
src/libserver/url.c View File

@@ -1017,7 +1017,7 @@ rspamd_web_parse (struct http_parser_url *u, const gchar *str, gsize len,
while (tmp < last) {
if (!g_ascii_isdigit (*tmp)) {
if (*tmp == '/' || *tmp == '#' || *tmp == '?' ||
is_url_end (*tmp)) {
is_url_end (*tmp) || g_ascii_isspace (*tmp)) {
/* Port + something */
st = parse_port;
c = slash;

Loading…
Cancel
Save