diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2006-08-04 15:41:56 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2006-08-04 15:41:56 +0000 |
commit | b708fa51ad1dd951ce2710b2eda69d8361327f16 (patch) | |
tree | 8e9088a9450aa336b7b33687ce3aaac93f9240fa /ares | |
parent | 8709f6c4b30eda92da0cd51cec83a1a6d7db8c32 (diff) |
Fixed comment.
Diffstat (limited to 'ares')
-rw-r--r-- | ares/ares_gethostbyname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/ares_gethostbyname.c b/ares/ares_gethostbyname.c index 09d14a50e..f675c51a9 100644 --- a/ares/ares_gethostbyname.c +++ b/ares/ares_gethostbyname.c @@ -172,7 +172,7 @@ static void host_callback(void *arg, int status, unsigned char *abuf, int alen) } else if (status == ARES_ENODATA && hquery->family == AF_INET6) { - /* There was no AAAA now lookup an A */ + /* There was no AAAA. Now lookup an A */ hquery->family = AF_INET; ares_search(hquery->channel, hquery->name, C_IN, T_A, host_callback, hquery); |