Fix a typo in a message

This commit is contained in:
Jaime Casanova
2012-06-12 09:28:27 -05:00
parent 6e9e4e05ae
commit 3d89fdadab
2 changed files with 2 additions and 2 deletions

View File

@@ -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)

View File

@@ -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;
}