aboutsummaryrefslogtreecommitdiffstats
path: root/acl.c
diff options
context:
space:
mode:
authorDavid Turner <digit@android.com>2010-09-09 17:43:12 +0200
committerDavid 'Digit' Turner <digit@android.com>2010-09-13 00:30:33 -0700
commitd480e7f0ee7bc26dcf62db2c7afc9a57ba4f5d63 (patch)
tree1cfd60f1a7b89d932762c8e8d14c825fb3199dda /acl.c
parent2738c26579c211c46eedf84a4e61c73243551888 (diff)
downloadexternal_qemu-d480e7f0ee7bc26dcf62db2c7afc9a57ba4f5d63.zip
external_qemu-d480e7f0ee7bc26dcf62db2c7afc9a57ba4f5d63.tar.gz
external_qemu-d480e7f0ee7bc26dcf62db2c7afc9a57ba4f5d63.tar.bz2
upstream: acl changes.
Diffstat (limited to 'acl.c')
-rw-r--r--acl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/acl.c b/acl.c
index 345a2b4..311dade 100644
--- 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;
QTAILQ_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