diff options
Diffstat (limited to 'ares/ares_strerror.c')
-rw-r--r-- | ares/ares_strerror.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ares/ares_strerror.c b/ares/ares_strerror.c index 67fc4f999..28d2e0bf1 100644 --- a/ares/ares_strerror.c +++ b/ares/ares_strerror.c @@ -41,7 +41,9 @@ const char *ares_strerror(int code) "Out of memory", "Channel is being destroyed", "Misformatted string", - "Illegal flags specified" + "Illegal flags specified", + "Given hostname is not numeric", + "Illegal hints flags specified" }; assert(code >= 0 && code < (int)(sizeof(errtext) / sizeof(*errtext))); |