From 6bfb03ae15b3f336076b4009d009969bb7ec578c Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Wed, 17 Feb 2016 14:25:35 +0100 Subject: [PATCH] vircgroup: Update virCgroupDenyDevicePath stub In cf113e8d we changed the declaration of virCgroupAllowDevicePath() and virCgroupDenyDevicePath(). However, while updating the stub for non-cgroup platforms for the former we forgot to update the latter too causing a build failure. Signed-off-by: Michal Privoznik --- src/util/vircgroup.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util/vircgroup.c b/src/util/vircgroup.c index d032c604e3..38398fd7d5 100644 --- a/src/util/vircgroup.c +++ b/src/util/vircgroup.c @@ -4689,7 +4689,8 @@ virCgroupDenyDevice(virCgroupPtr group ATTRIBUTE_UNUSED, int virCgroupDenyDevicePath(virCgroupPtr group ATTRIBUTE_UNUSED, const char *path ATTRIBUTE_UNUSED, - int perms ATTRIBUTE_UNUSED) + int perms ATTRIBUTE_UNUSED, + bool ignoreEacces ATTRIBUTE_UNUSED) { virReportSystemError(ENOSYS, "%s", _("Control groups not supported on this platform")); -- GitLab