]> git.proxmox.com Git - qemu.git/blobdiff - acl.h
Call xc_domain_shutdown with the reboot flag when the guest requests a reboot.
[qemu.git] / acl.h
diff --git a/acl.h b/acl.h
index 62a5e56409637e753d9ca71404b01162f9855686..0ef780401f9868e2cf629ee5523cf3b689d16f5d 100644 (file)
--- a/acl.h
+++ b/acl.h
@@ -25,7 +25,7 @@
 #ifndef __QEMU_ACL_H__
 #define __QEMU_ACL_H__
 
-#include "sys-queue.h"
+#include "qemu-queue.h"
 
 typedef struct qemu_acl_entry qemu_acl_entry;
 typedef struct qemu_acl qemu_acl;
@@ -34,13 +34,13 @@ struct qemu_acl_entry {
     char *match;
     int deny;
 
-    TAILQ_ENTRY(qemu_acl_entry) next;
+    QTAILQ_ENTRY(qemu_acl_entry) next;
 };
 
 struct qemu_acl {
     char *aclname;
     unsigned int nentries;
-    TAILQ_HEAD(,qemu_acl_entry) entries;
+    QTAILQ_HEAD(,qemu_acl_entry) entries;
     int defaultDeny;
 };