diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-11-12 07:52:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-11-12 07:52:20 +0000 |
commit | 9ba2747432e9b2a8b9fe180c6d8ed04cf8577ff1 (patch) | |
tree | 804c41c910cc77110e68e491248b3b79c08e0cb7 | |
parent | 58a4b51ae0ad49ecdf1fcaf911022e431e6348ab (diff) | |
download | glibc-9ba2747432e9b2a8b9fe180c6d8ed04cf8577ff1.tar.gz glibc-9ba2747432e9b2a8b9fe180c6d8ed04cf8577ff1.tar.xz glibc-9ba2747432e9b2a8b9fe180c6d8ed04cf8577ff1.zip |
(gaih_getanswer_slice): Don't abort for unknown request types for now.
-rw-r--r-- | resolv/nss_dns/dns-host.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/resolv/nss_dns/dns-host.c b/resolv/nss_dns/dns-host.c index 4d43dec946..6cbfcb63ce 100644 --- a/resolv/nss_dns/dns-host.c +++ b/resolv/nss_dns/dns-host.c @@ -1083,11 +1083,18 @@ gaih_getanswer_slice (const querybuf *answer, int anslen, const char *qname, } continue; } +#if 1 + // We should not see any types other than those explicitly listed + // below. Some types sent by server seem missing, though. Just + // collect the data for now. + if (__builtin_expect (type != T_A && type != T_AAAA, 0)) +#else if (__builtin_expect (type == T_SIG, 0) || __builtin_expect (type == T_KEY, 0) || __builtin_expect (type == T_NXT, 0) || __builtin_expect (type == T_PTR, 0) || __builtin_expect (type == T_DNAME, 0)) +#endif { /* We don't support DNSSEC yet. For now, ignore the record and send a low priority message to syslog. |