From 175b76e191c22480dde5a932e07c34b5ee0db2c5 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Sun, 14 May 2000 13:47:17 +0000 Subject: [PATCH] line 324: remark(1498): no prototype for the call to create_managers line 383: remark(1498): no prototype for the call to setup line 405: remark(1498): no prototype for the call to cleanup The missing prototypes were added. --- bin/named/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/named/main.c b/bin/named/main.c index 5785e205cd..c9014c1e6c 100644 --- a/bin/named/main.c +++ b/bin/named/main.c @@ -233,7 +233,7 @@ parse_command_line(int argc, char *argv[]) { } static isc_result_t -create_managers() { +create_managers(void) { isc_result_t result; result = isc_taskmgr_create(ns_g_mctx, ns_g_cpus, 0, &ns_g_taskmgr); @@ -288,7 +288,7 @@ destroy_managers(void) { } static void -setup() { +setup(void) { isc_result_t result; ns_os_chroot(ns_g_chrootdir); @@ -346,7 +346,7 @@ setup() { } static void -cleanup() { +cleanup(void) { destroy_managers(); ns_server_destroy(&ns_g_server); isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN,