This commit is contained in:
Anatoly Prohacky 2023-03-04 16:34:57 +10:00
parent 758979f11b
commit 172b2b785c

View File

@ -66,7 +66,7 @@ func Verify(a AclBit, n NumBit) bool {
}
// converting acl bits to string
func String(a AclBit) string {
func (a AclBit) String() string {
return strconv.FormatInt(int64(a), 2)
}