Expunge CVS cruft.
[mLib] / bres-adns.c
index 5e6ea58..8a943ef 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: bres-adns.c,v 1.2 2003/12/14 14:46:38 mdw Exp $
+ * $Id: bres-adns.c,v 1.4 2004/04/08 01:36:11 mdw Exp $
  *
  * Background reverse name resolution (ADNS version)
  *
  * must be licensed under the full GPL.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: bres-adns.c,v $
- * Revision 1.2  2003/12/14 14:46:38  mdw
- * Qualify name given to @bres_byname@.
- *
- * Revision 1.1  2003/12/13 20:37:59  mdw
- * Add adns support in background resolver.
- *
- */
-
 #ifndef HAVE_ADNS
 #  error "You need the ADNS library to compile this file."
 #endif
@@ -331,7 +320,7 @@ void bres_init(sel_state *s)
 {
   int e;
 
-  if ((e = adns_init(&ads, 0, 0)) != 0) {
+  if ((e = adns_init(&ads, adns_if_noautosys, 0)) != 0) {
     moan("adns_init failed: resolver won't work");
     return;
   }