summaryrefslogtreecommitdiffstats
path: root/include/authz/pamacct.h
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2019-03-15 18:12:18 +0100
committerDaniel P. Berrangé2019-03-21 12:52:37 +0100
commit063603d43ec428c1acc63c4e1f8593a7b6d164f1 (patch)
tree2d988379fb822ae6bb91a8ed14788c7e0c5891bb /include/authz/pamacct.h
parentUpdate version for v4.0.0-rc0 release (diff)
downloadqemu-063603d43ec428c1acc63c4e1f8593a7b6d164f1.tar.gz
qemu-063603d43ec428c1acc63c4e1f8593a7b6d164f1.tar.xz
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/pamacct.h')
-rw-r--r--include/authz/pamacct.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/authz/pamacct.h b/include/authz/pamacct.h
index 6e3046e528..cad5b11d47 100644
--- a/include/authz/pamacct.h
+++ b/include/authz/pamacct.h
@@ -33,8 +33,8 @@
OBJECT_GET_CLASS(QAuthZPAMClass, (obj), \
TYPE_QAUTHZ_PAM)
#define QAUTHZ_PAM(obj) \
- INTERFACE_CHECK(QAuthZPAM, (obj), \
- TYPE_QAUTHZ_PAM)
+ OBJECT_CHECK(QAuthZPAM, (obj), \
+ TYPE_QAUTHZ_PAM)
typedef struct QAuthZPAM QAuthZPAM;
typedef struct QAuthZPAMClass QAuthZPAMClass;