summaryrefslogtreecommitdiff
path: root/libc/inet/herror.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-02 11:00:37 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-02 11:00:37 +0000
commit34436c09619d6b211672301cc68b125bb8548a09 (patch)
tree7314b26dff44f78ff88adbf35882c0bd34fe7fad /libc/inet/herror.c
parenta1db18db0bacff792d1d272f8ae2c9f96a154087 (diff)
Grr. I should learn to compile stuff before committing
Diffstat (limited to 'libc/inet/herror.c')
-rw-r--r--libc/inet/herror.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/libc/inet/herror.c b/libc/inet/herror.c
index cb89be18b..79b84084f 100644
--- a/libc/inet/herror.c
+++ b/libc/inet/herror.c
@@ -23,8 +23,7 @@
#include <string.h>
#include <netdb.h>
-#ifdef L_herror
-
+static const char *error_msg = "Resolver error";
static const char *const h_errlist[] = {
"Error 0",
"Unknown host", /* 1 HOST_NOT_FOUND */
@@ -47,19 +46,16 @@ void herror(const char *s)
if (!s || !*s) {
c += 2;
}
- p = "Resolver error";
+ p = error_msg;
if ((h_errno >= 0) && (h_errno < h_nerr)) {
p = h_errlist[h_errno];
}
fprintf(stderr, "%s%s%s\n", s, c, p);
}
-#endif
-#ifdef L_hstrerror
const char *hstrerror(int err)
{
- const char *error_msg = "Resolver error";
if (err < 0) {
return(error_msg);
} else if (err < h_nerr) {
@@ -67,4 +63,3 @@ const char *hstrerror(int err)
}
return(error_msg);
}
-#endif