mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
Convert some extern variables to static
These probably should have been static all along, it was only forgotten out of sloppiness. Reviewed-by: Andres Freund <andres@anarazel.de> Discussion: https://www.postgresql.org/message-id/flat/e0a62134-83da-4ba4-8cdb-ceb0111c95ce@eisentraut.org
This commit is contained in:
@@ -84,8 +84,8 @@ typedef struct
|
||||
/* GUC parameters */
|
||||
int Password_encryption = PASSWORD_TYPE_SCRAM_SHA_256;
|
||||
char *createrole_self_grant = "";
|
||||
bool createrole_self_grant_enabled = false;
|
||||
GrantRoleOptions createrole_self_grant_options;
|
||||
static bool createrole_self_grant_enabled = false;
|
||||
static GrantRoleOptions createrole_self_grant_options;
|
||||
|
||||
/* Hook to check passwords in CreateRole() and AlterRole() */
|
||||
check_password_hook_type check_password_hook = NULL;
|
||||
|
||||
Reference in New Issue
Block a user