diff options
author | Neil Conway <neilc@samurai.com> | 2005-01-27 23:36:15 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2005-01-27 23:36:15 +0000 |
commit | f76730e35a05afb45abc487c76a01407e199da8d (patch) | |
tree | 645aa7acce9b58384de95e70c30e591e7fd3b0b9 /src/include/utils/acl.h | |
parent | a885ecd6efc28b57b8079ae865a6a09035d1fc3d (diff) |
Small patch to move get_grosysid() from catalog/aclchk.c to
utils/cache/lsyscache.c where it can be used by other things. Also
cleans up both get_usesysid() and get_grosysid() a bit. From Stephen
Frost.
Diffstat (limited to 'src/include/utils/acl.h')
-rw-r--r-- | src/include/utils/acl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/utils/acl.h b/src/include/utils/acl.h index 57f773853d3..ac04945bcd0 100644 --- a/src/include/utils/acl.h +++ b/src/include/utils/acl.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/acl.h,v 1.76 2004/12/31 22:03:45 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/utils/acl.h,v 1.77 2005/01/27 23:36:14 neilc Exp $ * * NOTES * An ACL array is simply an array of AclItems, representing the union @@ -245,7 +245,6 @@ extern Datum hash_aclitem(PG_FUNCTION_ARGS); * prototypes for functions in aclchk.c */ extern void ExecuteGrantStmt(GrantStmt *stmt); -extern AclId get_grosysid(char *groname); extern char *get_groname(AclId grosysid); extern AclMode pg_class_aclmask(Oid table_oid, AclId userid, |