Allow trailing '*' wildcard in interface names.
diff --git a/src/tftp.c b/src/tftp.c
index a3d111e..960b1ee 100644
--- a/src/tftp.c
+++ b/src/tftp.c
@@ -209,7 +209,7 @@
 #ifdef HAVE_DHCP      
       /* allowed interfaces are the same as for DHCP */
       for (tmp = daemon->dhcp_except; tmp; tmp = tmp->next)
-	if (tmp->name && (strcmp(tmp->name, name) == 0))
+	if (tmp->name && wildcard_match(tmp->name, name))
 	  return;
 #endif