]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
initialize _res.options to RES_DEFAULT
authorwessels <>
Wed, 29 Oct 1997 12:19:06 +0000 (12:19 +0000)
committerwessels <>
Wed, 29 Oct 1997 12:19:06 +0000 (12:19 +0000)
src/dnsserver.cc

index 2abf32266cc0bbf3c6ec663145d6f7b309a7f8fb..ede34a974ca50be76256cd66dde9479f24bffc81 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: dnsserver.cc,v 1.38 1997/10/25 17:22:40 wessels Exp $
+ * $Id: dnsserver.cc,v 1.39 1997/10/29 05:19:06 wessels Exp $
  *
  * DEBUG: section 0     DNS Resolver
  * AUTHOR: Harvest Derived
@@ -269,6 +269,9 @@ main(int argc, char *argv[])
 
 #if HAVE_RES_INIT
     res_init();
+#ifdef RES_DEFAULT
+    _res.options = RES_DEFAULT;
+#endif
 #ifdef RES_DEFNAMES
     _res.options &= ~RES_DEFNAMES;
 #endif