diff options
-rw-r--r-- | src/dns.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -527,8 +527,10 @@ void a_Dns_dillohost_to_string(DilloHost *host, char *dst, size_t size) switch (errno) { case EAFNOSUPPORT: snprintf(dst, size, "Unknown address family"); + break; case ENOSPC: snprintf(dst, size, "Buffer too small"); + break; } } } |