diff options
author | Tom Lane | 2005-08-15 02:40:36 +0000 |
---|---|---|
committer | Tom Lane | 2005-08-15 02:40:36 +0000 |
commit | 2498d8296eebd6706d5a00886a4f5ba02a1fe261 (patch) | |
tree | c07de46683136e441e7f3fef937f540161761d61 /src/backend/utils/misc/superuser.c | |
parent | f590ed12f67620ac018491739c8bc5b13de9495c (diff) |
Clean up some stray remaining references to pg_shadow, pg_user, pg_group.
Diffstat (limited to 'src/backend/utils/misc/superuser.c')
-rw-r--r-- | src/backend/utils/misc/superuser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/misc/superuser.c b/src/backend/utils/misc/superuser.c index 9e965b8107f..c9c17cef704 100644 --- a/src/backend/utils/misc/superuser.c +++ b/src/backend/utils/misc/superuser.c @@ -5,7 +5,7 @@ * * All code should use either of these two functions to find out * whether a given user is a superuser, rather than examining - * pg_shadow.usesuper directly, so that the escape hatch built in for + * pg_authid.rolsuper directly, so that the escape hatch built in for * the single-user case works. * * @@ -14,7 +14,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/superuser.c,v 1.32 2005/06/28 05:09:02 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/superuser.c,v 1.33 2005/08/15 02:40:26 tgl Exp $ * *------------------------------------------------------------------------- */ |