mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Ignore zero length domains in no_proxy.
This commit is contained in:
parent
475c452780
commit
b2b76dcef4
@ -1,5 +1,7 @@
|
|||||||
2010-05-25 Giuseppe Scrivano <gscrivano@gnu.org>
|
2010-05-25 Giuseppe Scrivano <gscrivano@gnu.org>
|
||||||
|
|
||||||
|
* host.c (sufmatch): Do not consider zero length entries.
|
||||||
|
|
||||||
* http.c (H_10X): New macro.
|
* http.c (H_10X): New macro.
|
||||||
(gethttp): Silently ignore 1xx responses.
|
(gethttp): Silently ignore 1xx responses.
|
||||||
|
|
||||||
|
@ -874,6 +874,9 @@ sufmatch (const char **list, const char *what)
|
|||||||
lw = strlen (what);
|
lw = strlen (what);
|
||||||
for (i = 0; list[i]; i++)
|
for (i = 0; list[i]; i++)
|
||||||
{
|
{
|
||||||
|
if (list[i][0] == '\0')
|
||||||
|
continue;
|
||||||
|
|
||||||
for (j = strlen (list[i]), k = lw; j >= 0 && k >= 0; j--, k--)
|
for (j = strlen (list[i]), k = lw; j >= 0 && k >= 0; j--, k--)
|
||||||
if (c_tolower (list[i][j]) != c_tolower (what[k]))
|
if (c_tolower (list[i][j]) != c_tolower (what[k]))
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user