summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ares_gethostbyname.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ares_gethostbyname.c b/ares_gethostbyname.c
index 09d14a5..f675c51 100644
--- a/ares_gethostbyname.c
+++ b/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);