Commit 0b4620b5 authored by Marc G. Fournier's avatar Marc G. Fournier

Quick cleanups

parent 6c7c6d0c
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.23 1998/02/23 17:43:53 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.24 1998/02/23 18:43:06 scrappy Exp $
* *
* NOTES * NOTES
* InitPostgres() is the function called from PostgresMain * InitPostgres() is the function called from PostgresMain
...@@ -591,6 +591,7 @@ InitPostgres(char *name) /* database name */ ...@@ -591,6 +591,7 @@ InitPostgres(char *name) /* database name */
* initialize local data in cache invalidation stuff * initialize local data in cache invalidation stuff
* ---------------- * ----------------
*/ */
if (!bootstrap)
InitLocalInvalidateData(); InitLocalInvalidateData();
/* ---------------- /* ----------------
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: acl.h,v 1.13 1998/01/24 22:50:28 momjian Exp $ * $Id: acl.h,v 1.14 1998/02/23 18:43:13 scrappy Exp $
* *
* NOTES * NOTES
* For backward-compatability purposes we have to allow there * For backward-compatability purposes we have to allow there
...@@ -62,7 +62,7 @@ typedef uint8 AclMode; ...@@ -62,7 +62,7 @@ typedef uint8 AclMode;
#define ACL_MODECHG_EQL 3 #define ACL_MODECHG_EQL 3
/* change this line if you want to set the default acl permission */ /* change this line if you want to set the default acl permission */
#define ACL_WORLD_DEFAULT (ACL_RD) #define ACL_WORLD_DEFAULT (ACL_NO)
/* #define ACL_WORLD_DEFAULT (ACL_RD|ACL_WR|ACL_AP|ACL_RU) */ /* #define ACL_WORLD_DEFAULT (ACL_RD|ACL_WR|ACL_AP|ACL_RU) */
#define ACL_OWNER_DEFAULT (ACL_RD|ACL_WR|ACL_AP|ACL_RU) #define ACL_OWNER_DEFAULT (ACL_RD|ACL_WR|ACL_AP|ACL_RU)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment