]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1614. [port] win32: silence resource limit messages. [RT# 11101]
authorMark Andrews <marka@isc.org>
Mon, 19 Apr 2004 23:09:51 +0000 (23:09 +0000)
committerMark Andrews <marka@isc.org>
Mon, 19 Apr 2004 23:09:51 +0000 (23:09 +0000)
CHANGES
bin/named/config.c

diff --git a/CHANGES b/CHANGES
index c3af43005e78ca21d780aed8fb8e3aa3a1b6c731..fdaf167bbde939c9dd8f37ae3c80e2e0b65074ff 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -8,7 +8,7 @@
 1615.  [port]          Define ISC_SOCKADDR_LEN_T based on _BSD_SOCKLEN_T_ if
                        it is defined.
 
-1614.  [placeholder]   rt11101
+1614.  [port]          win32: silence resource limit messages. [RT# 11101]
 
 1613.  [placeholder]   rt11119
 
index 8c5eaeb902cdf7d6ae1cba18f9eb10989d818007..c761833734f7cefa4fd0b6d017989db5a89e1c22 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: config.c,v 1.47 2004/03/16 05:52:14 marka Exp $ */
+/* $Id: config.c,v 1.48 2004/04/19 23:09:51 marka Exp $ */
 
 #include <config.h>
 
 
 static char defaultconf[] = "\
 options {\n\
-#      blackhole {none;};\n\
-       coresize default;\n\
+#      blackhole {none;};\n"
+#ifndef WIN32
+"      coresize default;\n\
        datasize default;\n\
-       deallocate-on-exit true;\n\
+       files default;\n\
+       stacksize default;\n"
+#endif
+"      deallocate-on-exit true;\n\
 #      directory <none>\n\
        dump-file \"named_dump.db\";\n\
        fake-iquery no;\n\
-       files default;\n\
        has-old-clients false;\n\
        heartbeat-interval 60;\n\
        host-statistics no;\n\
@@ -77,7 +80,6 @@ options {\n\
        serial-queries 20;\n\
        serial-query-rate 20;\n\
        server-id none;\n\
-       stacksize default;\n\
        statistics-file \"named.stats\";\n\
        statistics-interval 60;\n\
        tcp-clients 100;\n\