diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-08-27 16:54:10 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-08-27 16:54:10 +0200 |
commit | 2e6a8047f0c94b4ac1c3e80faecd628ae552a6c3 (patch) | |
tree | 03bff9756d6df1af0120b1ac30a14fc3dd51de84 /src/bin/pg_combinebackup/pg_combinebackup.c | |
parent | dc26ff2f228174efed9bf285ee8f8065ea295799 (diff) | |
download | postgresql-2e6a8047f0c94b4ac1c3e80faecd628ae552a6c3.tar.gz postgresql-2e6a8047f0c94b4ac1c3e80faecd628ae552a6c3.zip |
Message style improvements
Diffstat (limited to 'src/bin/pg_combinebackup/pg_combinebackup.c')
-rw-r--r-- | src/bin/pg_combinebackup/pg_combinebackup.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/pg_combinebackup/pg_combinebackup.c b/src/bin/pg_combinebackup/pg_combinebackup.c index 9ded5a2140e..5e2f4f4b3dd 100644 --- a/src/bin/pg_combinebackup/pg_combinebackup.c +++ b/src/bin/pg_combinebackup/pg_combinebackup.c @@ -337,7 +337,7 @@ main(int argc, char *argv[]) * won't have the WAL ranges for the resulting manifest. */ if (manifests[n_prior_backups] == NULL) - pg_fatal("can't generate a manifest because no manifest is available for the final input backup"); + pg_fatal("cannot generate a manifest because no manifest is available for the final input backup"); } else mwriter = NULL; @@ -655,7 +655,7 @@ check_control_files(int n_backups, char **backup_dirs) if (data_checksum_mismatch) { pg_log_warning("only some backups have checksums enabled"); - pg_log_warning_hint("disable, and optionally reenable, checksums on the output directory to avoid failures"); + pg_log_warning_hint("Disable, and optionally reenable, checksums on the output directory to avoid failures."); } return system_identifier; @@ -766,9 +766,9 @@ help(const char *progname) printf(_(" -o, --output=DIRECTORY output directory\n")); printf(_(" -T, --tablespace-mapping=OLDDIR=NEWDIR\n" " relocate tablespace in OLDDIR to NEWDIR\n")); - printf(_(" --clone clone (reflink) instead of copying files\n")); + printf(_(" --clone clone (reflink) files instead of copying\n")); printf(_(" --copy copy files (default)\n")); - printf(_(" --copy-file-range copy using copy_file_range() syscall\n")); + printf(_(" --copy-file-range copy using copy_file_range() system call\n")); printf(_(" --manifest-checksums=SHA{224,256,384,512}|CRC32C|NONE\n" " use algorithm for manifest checksums\n")); printf(_(" --no-manifest suppress generation of backup manifest\n")); @@ -1070,7 +1070,7 @@ process_directory_recursively(Oid tsoid, */ bmpath = psprintf("%s/%s", input_directory, "backup_manifest"); - pg_log_warning("\"%s\" contains no entry for \"%s\"", + pg_log_warning("manifest file \"%s\" contains no entry for file \"%s\"", bmpath, manifest_path); pfree(bmpath); } |