diff options
Diffstat (limited to 'contrib/sepgsql/hooks.c')
-rw-r--r-- | contrib/sepgsql/hooks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/sepgsql/hooks.c b/contrib/sepgsql/hooks.c index 87fdd972c27..363ac067003 100644 --- a/contrib/sepgsql/hooks.c +++ b/contrib/sepgsql/hooks.c @@ -57,7 +57,7 @@ static sepgsql_context_info_t sepgsql_context_info; /* * GUC: sepgsql.permissive = (on|off) */ -static bool sepgsql_permissive; +static bool sepgsql_permissive = false; bool sepgsql_get_permissive(void) @@ -68,7 +68,7 @@ sepgsql_get_permissive(void) /* * GUC: sepgsql.debug_audit = (on|off) */ -static bool sepgsql_debug_audit; +static bool sepgsql_debug_audit = false; bool sepgsql_get_debug_audit(void) |