From cbfef17a1d7068f38ae3277b31a1b1438945c9b2 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Tue, 29 Jan 2019 12:28:40 +0900 Subject: [PATCH] Fix check of --no-wait option --- repmgr-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repmgr-client.c b/repmgr-client.c index 25ebf6b9..545221b4 100644 --- a/repmgr-client.c +++ b/repmgr-client.c @@ -1722,7 +1722,7 @@ check_cli_parameters(const int action) action_name(action)); } } - else if (runtime_options.wait) + else if (runtime_options.no_wait) { switch (action) {