From: Timo Sirainen Date: Sun, 8 Oct 2017 22:22:47 +0000 (+0300) Subject: acl: Fix compiler warning with -Wstrict-bool X-Git-Tag: 2.2.34~306 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=04e1ddbef26d4e78f1b2a900b799963023470ce4;p=thirdparty%2Fdovecot%2Fcore.git acl: Fix compiler warning with -Wstrict-bool --- diff --git a/src/plugins/acl/acl-backend-vfile.c b/src/plugins/acl/acl-backend-vfile.c index e6fcc9408a..133eceb35a 100644 --- a/src/plugins/acl/acl-backend-vfile.c +++ b/src/plugins/acl/acl-backend-vfile.c @@ -456,7 +456,7 @@ acl_backend_vfile_read_with_retry(struct acl_object *aclobj, return ret <= 0 ? -1 : 0; } -static int +static bool acl_vfile_validity_has_changed(struct acl_backend_vfile *backend, const struct acl_vfile_validity *validity, const struct stat *st)