]> git.proxmox.com Git - qemu.git/blobdiff - acl.c
rename HAVE_FNMATCH_H to CONFIG_FNMATCH
[qemu.git] / acl.c
diff --git a/acl.c b/acl.c
index f69db25c8bf964810a3479116a59bd0543d35b5f..1a11a61d1936ce992fb2574391f08722696250b0 100644 (file)
--- a/acl.c
+++ b/acl.c
@@ -27,7 +27,7 @@
 #include "sysemu.h"
 #include "acl.h"
 
-#ifdef HAVE_FNMATCH_H
+#ifdef CONFIG_FNMATCH
 #include <fnmatch.h>
 #endif
 
@@ -79,7 +79,7 @@ int qemu_acl_party_is_allowed(qemu_acl *acl,
     qemu_acl_entry *entry;
 
     TAILQ_FOREACH(entry, &acl->entries, next) {
-#ifdef HAVE_FNMATCH_H
+#ifdef CONFIG_FNMATCH
         if (fnmatch(entry->match, party, 0) == 0)
             return entry->deny ? 0 : 1;
 #else