2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Check return values or cast them to (void), as required by the coding

standards; add exceptions to the coding standards for cases where this is
not desirable
This commit is contained in:
Andreas Gustafsson
2001-11-30 01:59:49 +00:00
parent 9ac8796f16
commit 1f1d36a87b
61 changed files with 420 additions and 409 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: view.c,v 1.108 2001/11/27 04:06:14 marka Exp $ */
/* $Id: view.c,v 1.109 2001/11/30 01:59:23 gson Exp $ */
#include <config.h>
@@ -343,7 +343,7 @@ dialup(dns_zone_t *zone, void *dummy) {
void
dns_view_dialup(dns_view_t *view) {
REQUIRE(DNS_VIEW_VALID(view));
dns_zt_apply(view->zonetable, ISC_FALSE, dialup, NULL);
(void)dns_zt_apply(view->zonetable, ISC_FALSE, dialup, NULL);
}
void