From cc610f995df688fdec883098afe396f27a10b96a Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Fri, 3 Jun 2016 21:25:22 +0900 Subject: [PATCH] Whitespace and typo fixes --- repmgr.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/repmgr.c b/repmgr.c index 536dbe15..3580e7a2 100644 --- a/repmgr.c +++ b/repmgr.c @@ -1,3 +1,4 @@ + /* * repmgr.c - Command interpreter for the repmgr package * Copyright (C) 2ndQuadrant, 2010-2016 @@ -4477,16 +4478,16 @@ run_basebackup(const char *data_dir, int server_version) */ if (server_version < 90600 || !options.use_replication_slots) { - /* + /* * We're going to check first if the user set the xlog method in the repmgr.conf - * file. We don't want to have conflits with pg_basebackup due to specifying the + * file. We don't want to have conflicts with pg_basebackup due to specifying the * method twice. */ - const char xlog_short[4] = "-X "; + const char xlog_short[4] = "-X "; const char xlog_long[14] = "--xlog-method"; if (strstr(options.pg_basebackup_options, xlog_short) == NULL && strstr(options.pg_basebackup_options, xlog_long) == NULL ) { - appendPQExpBuffer(¶ms, " -X stream"); + appendPQExpBuffer(¶ms, " -X stream"); } }