]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[master] address warnings building exportlibs
authorEvan Hunt <each@isc.org>
Thu, 28 Feb 2013 23:22:44 +0000 (15:22 -0800)
committerEvan Hunt <each@isc.org>
Thu, 28 Feb 2013 23:22:44 +0000 (15:22 -0800)
lib/dns/view.c

index ef09ca672fc7be4dd95cae2250f014f1b4046828..ad773af96b18b305b7e5ed3e0dbb3e9363de3e73 100644 (file)
@@ -937,6 +937,7 @@ dns_view_find2(dns_view_t *view, dns_name_t *name, dns_rdatatype_t type,
 #ifndef BIND9
        UNUSED(use_hints);
        UNUSED(use_static_stub);
+       UNUSED(zone);
 #endif
 
        /*
@@ -961,11 +962,11 @@ dns_view_find2(dns_view_t *view, dns_name_t *name, dns_rdatatype_t type,
        /*
         * Find a database to answer the query.
         */
-       zone = NULL;
        db = NULL;
        node = NULL;
        is_staticstub_zone = ISC_FALSE;
 #ifdef BIND9
+       zone = NULL;
        result = dns_zt_find(view->zonetable, name, 0, NULL, &zone);
        if (zone != NULL && dns_zone_gettype(zone) == dns_zone_staticstub &&
            !use_static_stub) {
@@ -1213,11 +1214,14 @@ dns_view_findzonecut2(dns_view_t *view, dns_name_t *name, dns_name_t *fname,
        dns_rdataset_t zrdataset, zsigrdataset;
        dns_fixedname_t zfixedname;
 
+#ifndef BIND9
+       UNUSED(zone);
+#endif
+
        REQUIRE(DNS_VIEW_VALID(view));
        REQUIRE(view->frozen);
 
        db = NULL;
-       zone = NULL;
        use_zone = ISC_FALSE;
        try_hints = ISC_FALSE;
        zfname = NULL;
@@ -1233,6 +1237,7 @@ dns_view_findzonecut2(dns_view_t *view, dns_name_t *name, dns_name_t *fname,
         * Find the right database.
         */
 #ifdef BIND9
+       zone = NULL;
        result = dns_zt_find(view->zonetable, name, 0, NULL, &zone);
        if (result == ISC_R_SUCCESS || result == DNS_R_PARTIALMATCH)
                result = dns_zone_getdb(zone, &db);