15 January 2009: Wouter
- bug #229: fixup configure checks for compilation with Solaris
Sun cc compiler, ./configure CC=/opt/SUNWspro/bin/cc
+ - fixup suncc warnings.
14 January 2009: Wouter
- 1.2.1 feature: negative caching for failed queries.
} else {
verbose(VERB_QUERY, "Encountered an unhandled type of "
"DS response, thus bogus.");
-return_bogus:
- *ke = key_entry_create_bad(qstate->region, qinfo->qname,
- qinfo->qname_len, qinfo->qclass);
- return (*ke) != NULL;
+ goto return_bogus;
}
- /* NOTREACHED */
- return 0;
+return_bogus:
+ *ke = key_entry_create_bad(qstate->region, qinfo->qname,
+ qinfo->qname_len, qinfo->qclass);
+ return (*ke) != NULL;
}
/**