diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-25 06:37:42 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-25 06:37:42 +0000 |
commit | 0d3674129fad3ce4494f22be78f62d0a8041fe59 (patch) | |
tree | f97f2f781af51d5f4bf96018bf416d6b8e69e777 /ares | |
parent | fce6783be48b880f2f9327c971de964ab62cb471 (diff) |
Dan Fandrich fixed a minor flaw in Dominick's fix!
Diffstat (limited to 'ares')
-rw-r--r-- | ares/ares_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/ares_init.c b/ares/ares_init.c index c40afdad8..70f455361 100644 --- a/ares/ares_init.c +++ b/ares/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) |