mirror of
https://github.com/curl/curl.git
synced 2026-07-23 12:17:15 +03:00
Dan Fandrich fixed a minor flaw in Dominick's fix!
This commit is contained in:
parent
fce6783be4
commit
0d3674129f
1 changed files with 1 additions and 1 deletions
|
|
@ -603,7 +603,7 @@ static int config_nameserver(struct server_state **servers, int *nservers,
|
|||
while (more)
|
||||
{
|
||||
more = 0;
|
||||
while (*p && !isspace(*p) && *str != ',')
|
||||
while (*p && !isspace(*p) && *p != ',')
|
||||
p++;
|
||||
|
||||
if (*p)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue