summaryrefslogtreecommitdiff
path: root/contrib/auth_delay
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/auth_delay')
-rw-r--r--contrib/auth_delay/auth_delay.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/auth_delay/auth_delay.c b/contrib/auth_delay/auth_delay.c
index 199de9bb391..ca388c44984 100644
--- a/contrib/auth_delay/auth_delay.c
+++ b/contrib/auth_delay/auth_delay.c
@@ -53,7 +53,7 @@ auth_delay_checks(Port *port, int status)
void
_PG_init(void)
{
- /* Define custome GUC variables */
+ /* Define custom GUC variables */
DefineCustomIntVariable("auth_delay.milliseconds",
"Milliseconds to delay before reporting authentication failure",
NULL,
@@ -63,6 +63,7 @@ _PG_init(void)
PGC_SIGHUP,
GUC_UNIT_MS,
NULL,
+ NULL,
NULL);
/* Install Hooks */
original_client_auth_hook = ClientAuthentication_hook;