From 54f4a80a38ddf299e7db2a97c15beeebb9d9989c Mon Sep 17 00:00:00 2001 Message-Id: <54f4a80a38ddf299e7db2a97c15beeebb9d9989c.1717723175.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 28 Jul 1999 22:11:13 +0000 Subject: [PATCH] * adns_s_systemfail is in table of errors (for eg adns_strerror). Organization: Straylight/Edgeware From: ian --- changelog | 7 +++++++ src/general.c | 1 + 2 files changed, 8 insertions(+) diff --git a/changelog b/changelog index 9a74f85..a65a148 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,10 @@ +adns (0.4) unstable; urgency=low + + Bugfixes: + * adns_s_systemfail is in table of errors (for eg adns_strerror). + + -- + adns (0.3) unstable; urgency=low Incompatible changes: diff --git a/src/general.c b/src/general.c index 71009f7..12e5983 100644 --- a/src/general.c +++ b/src/general.c @@ -211,6 +211,7 @@ static const struct sinfo { SINFO( nomemory, "Out of memory" ), SINFO( unknownrrtype, "Query not implemented in DNS library" ), + SINFO( systemfail, "General resolver or system failure" ), SINFO( timeout, "DNS query timed out" ), SINFO( allservfail, "All nameservers failed" ), -- [mdw]