]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
remove unused variables: dispatchv4, dispatchv6.
authorMark Andrews <marka@isc.org>
Sun, 14 Mar 2004 23:02:32 +0000 (23:02 +0000)
committerMark Andrews <marka@isc.org>
Sun, 14 Mar 2004 23:02:32 +0000 (23:02 +0000)
bin/named/server.c

index 5a8a67b48d6fa9587235d7b0ffac9fc6567cdfcb..3944cd6eee44834fa7bf262c81b11527fd2ff258 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: server.c,v 1.339.2.24 2004/03/14 22:52:16 marka Exp $ */
+/* $Id: server.c,v 1.339.2.25 2004/03/14 23:02:32 marka Exp $ */
 
 #include <config.h>
 
@@ -1738,8 +1738,6 @@ load_configuration(const char *filename, ns_server_t *server,
        dns_viewlist_t viewlist;
        dns_viewlist_t tmpviewlist;
        ns_aclconfctx_t aclconfctx;
-       dns_dispatch_t *dispatchv4 = NULL;
-       dns_dispatch_t *dispatchv6 = NULL;
        isc_uint32_t interface_interval;
        isc_uint32_t heartbeat_interval;
        in_port_t listen_port;
@@ -2216,11 +2214,6 @@ load_configuration(const char *filename, ns_server_t *server,
 
        }
 
-       if (dispatchv4 != NULL)
-               dns_dispatch_detach(&dispatchv4);
-       if (dispatchv6 != NULL)
-               dns_dispatch_detach(&dispatchv6);
-
        /* Relinquish exclusive access to configuration data. */
        isc_task_endexclusive(server->task);