From 3d89fdadabbb2483d9c7b8a91a6380d916511b70 Mon Sep 17 00:00:00 2001 From: Jaime Casanova Date: Tue, 12 Jun 2012 09:28:27 -0500 Subject: [PATCH] Fix a typo in a message --- HISTORY | 2 +- repmgr.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index 0a600ec3..9f155876 100644 --- a/HISTORY +++ b/HISTORY @@ -36,7 +36,7 @@ Add strnlen for compatibility with OS X (Greg) Improve performance of repl_status view (Jaime) -1.2.0 2012-04-28 +1.2.0 2012-06-15 Test ssh connection before trying to rsync (Cédric) Add CLUSTER SHOW command (Carlo Ascani) Add CLUSTER CLEANUP command (Jaime) diff --git a/repmgr.c b/repmgr.c index e47af792..ea11cdfa 100644 --- a/repmgr.c +++ b/repmgr.c @@ -1589,7 +1589,7 @@ test_ssh_connection(char *host, char *remote_user) log_debug(_("command is: %s"), script); r = system(script); if (r != 0) - log_info(_("Can not connect to the remote host (%s)\n"), host); + log_info(_("Cannot connect to the remote host (%s)\n"), host); return r; }