mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-26 16:46:28 +00:00
Standardize quoting in log messages
This commit is contained in:
@@ -2055,7 +2055,7 @@ test_ssh_connection(char *host, char *remote_user)
|
||||
}
|
||||
|
||||
if (r != 0)
|
||||
log_warning(_("unable to connect to remote host '%s' via SSH"), host);
|
||||
log_warning(_("unable to connect to remote host \"%s\" via SSH"), host);
|
||||
|
||||
return r;
|
||||
}
|
||||
@@ -2281,7 +2281,7 @@ copy_remote_files(char *host, char *remote_user, char *remote_path,
|
||||
|
||||
termPQExpBuffer(&rsync_flags);
|
||||
|
||||
log_info(_("rsync command line: '%s'"), script);
|
||||
log_info(_("rsync command line:\n %s"), script);
|
||||
|
||||
r = system(script);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user