From 3b10750a7f1498abb4d47386d662ff7514c99ff1 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Mon, 12 Nov 2018 10:19:34 +0900 Subject: [PATCH] doc: fix missing quotation marks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch from Cédric Villemain --- configfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configfile.c b/configfile.c index 35c3924d..010e18a4 100644 --- a/configfile.c +++ b/configfile.c @@ -816,13 +816,13 @@ _parse_config(t_configuration_options *options, ItemList *error_list, ItemList * if (options->archive_ready_warning >= options->archive_ready_critical) { item_list_append(error_list, - _("\archive_ready_critical\" must be greater than \"archive_ready_warning\"")); + _("\"archive_ready_critical\" must be greater than \"archive_ready_warning\"")); } if (options->replication_lag_warning >= options->replication_lag_critical) { item_list_append(error_list, - _("\replication_lag_critical\" must be greater than \"replication_lag_warning\"")); + _("\"replication_lag_critical\" must be greater than \"replication_lag_warning\"")); } if (options->standby_reconnect_timeout < options->node_rejoin_timeout)