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.3.0.rc1~863 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2de2be0e3453cdfa1d9eebd4d4361720ab60aff;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 3709999185..b6af2fa06c 100644 --- a/src/plugins/acl/acl-backend-vfile.c +++ b/src/plugins/acl/acl-backend-vfile.c @@ -455,7 +455,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)