From 63c37709fa81eddacf7421019538c3abb915885f Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Thu, 26 Aug 2021 11:19:41 +0300 Subject: [PATCH] [#334] pkg/acl: Fix public-read ACL rule Signed-off-by: Pavel Karpy --- pkg/acl/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/acl/types.go b/pkg/acl/types.go index 184dea3..a83c8c8 100644 --- a/pkg/acl/types.go +++ b/pkg/acl/types.go @@ -8,5 +8,5 @@ const ( PrivateBasicRule = 0x1C8C8CCC // ReadOnlyBasicRule is a basic ACL value for public-read container. - ReadOnlyBasicRule = 0x1FBFBFFF + ReadOnlyBasicRule = 0x1FBF8CFF )