From 45efb3cc7338c52dca9078035021f7695b224d5b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 25 Feb 2004 06:37:42 +0000 Subject: Dan Fandrich fixed a minor flaw in Dominick's fix! --- ares_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ares_init.c b/ares_init.c index c40afda..70f4553 100644 --- a/ares_init.c +++ b/ares_init.c @@ -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) -- cgit v1.2.3