482e5e4
Index: smallapp/unbound-checkconf.c
482e5e4
===================================================================
482e5e4
--- smallapp/unbound-checkconf.c	(revision 1404)
482e5e4
+++ smallapp/unbound-checkconf.c	(working copy)
482e5e4
@@ -258,7 +258,9 @@
482e5e4
 {
482e5e4
 	struct config_strlist* p;
482e5e4
 	for(p=list; p; p=p->next) {
482e5e4
-		check_chroot_string(desc, &p->str, chrootdir, cfg);
482e5e4
+		/* skip wildcard checks, may fail */
482e5e4
+		if(strstr(p->str,"*") == NULL)
482e5e4
+		     check_chroot_string(desc, &p->str, chrootdir, cfg);
482e5e4
 	}
482e5e4
 }
482e5e4