diff options
Diffstat (limited to 'src/backend/tcop/aclchk.c')
-rw-r--r-- | src/backend/tcop/aclchk.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/backend/tcop/aclchk.c b/src/backend/tcop/aclchk.c index f0518903dc2..fade9d09826 100644 --- a/src/backend/tcop/aclchk.c +++ b/src/backend/tcop/aclchk.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.12 1997/08/18 20:53:29 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/Attic/aclchk.c,v 1.13 1997/08/19 21:33:54 momjian Exp $ * * NOTES * See acl.h. @@ -36,6 +36,8 @@ #include "parser/catalog_utils.h" #include "fmgr.h" +static int32 aclcheck(Acl *acl, AclId id, AclIdType idtype, AclMode mode); + /* * Enable use of user relations in place of real system catalogs. */ @@ -257,7 +259,7 @@ in_group(AclId uid, AclId gid) * Returns 1 if the 'id' of type 'idtype' has ACL entries in 'acl' to satisfy * any one of the requirements of 'mode'. Returns 0 otherwise. */ -int32 +static int32 aclcheck(Acl *acl, AclId id, AclIdType idtype, AclMode mode) { register unsigned i; |