summary refs log tree commit diff stats
path: root/include/authz/simple.h
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2019-03-15 18:12:18 +0100
committerDaniel P. Berrangé <berrange@redhat.com>2019-03-21 11:52:37 +0000
commit063603d43ec428c1acc63c4e1f8593a7b6d164f1 (patch)
tree2d988379fb822ae6bb91a8ed14788c7e0c5891bb /include/authz/simple.h
parent62a172e6a77d9072bb1a18f295ce0fcf4b90a4f2 (diff)
downloadfocaccia-qemu-063603d43ec428c1acc63c4e1f8593a7b6d164f1.tar.gz
focaccia-qemu-063603d43ec428c1acc63c4e1f8593a7b6d164f1.zip
authz: Use OBJECT_CHECK() on objects
TYPE_QAUTHZ is an abstract object of type TYPE_OBJECT. All other
are children of TYPE_QAUTHZ, thus also objects.

Keep INTERFACE_CHECK() for interfaces, and use OBJECT_CHECK() on
objects.

Reported-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'include/authz/simple.h')
-rw-r--r--include/authz/simple.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/authz/simple.h b/include/authz/simple.h
index ef13958269..30b932dfeb 100644
--- a/include/authz/simple.h
+++ b/include/authz/simple.h
@@ -32,8 +32,8 @@
     OBJECT_GET_CLASS(QAuthZSimpleClass, (obj),    \
                       TYPE_QAUTHZ_SIMPLE)
 #define QAUTHZ_SIMPLE(obj) \
-    INTERFACE_CHECK(QAuthZSimple, (obj),          \
-                    TYPE_QAUTHZ_SIMPLE)
+    OBJECT_CHECK(QAuthZSimple, (obj), \
+                 TYPE_QAUTHZ_SIMPLE)
 
 typedef struct QAuthZSimple QAuthZSimple;
 typedef struct QAuthZSimpleClass QAuthZSimpleClass;