diff options
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 5 | ||||
-rw-r--r-- | src/bin/pg_dump/pg_backup_custom.c | 2 | ||||
-rw-r--r-- | src/bin/pg_dump/pg_dumpall.c | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 1d3ef2c694e..948b859b569 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -2015,8 +2015,9 @@ BaseBackup(char *compression_algorithm, char *compression_detail, * If we write the data out to a tar file, it will be named * base.tar if it's the main data directory or <tablespaceoid>.tar * if it's for another tablespace. CreateBackupStreamer() will - * arrange to add .gz to the archive name if pg_basebackup is - * performing compression. + * arrange to add an extension to the archive name if + * pg_basebackup is performing compression, depending on the + * compression type. */ if (PQgetisnull(res, i, 0)) { diff --git a/src/bin/pg_dump/pg_backup_custom.c b/src/bin/pg_dump/pg_backup_custom.c index d1e54644a94..7529367a7b9 100644 --- a/src/bin/pg_dump/pg_backup_custom.c +++ b/src/bin/pg_dump/pg_backup_custom.c @@ -99,7 +99,7 @@ static size_t _CustomReadFunc(ArchiveHandle *AH, char **buf, size_t *buflen); * It's task is to create any extra archive context (using AH->formatData), * and to initialize the supported function pointers. * - * It should also prepare whatever it's input source is for reading/writing, + * It should also prepare whatever its input source is for reading/writing, * and in the case of a read mode connection, it should load the Header & TOC. */ void diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index fbd1c6fc85b..cd421c59443 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -995,7 +995,7 @@ dumpRoleMembership(PGconn *conn) fprintf(OPF, "--\n-- Role memberships\n--\n\n"); /* - * We can't dump these GRANT commands in arbitary order, because a role + * We can't dump these GRANT commands in arbitrary order, because a role * that is named as a grantor must already have ADMIN OPTION on the * role for which it is granting permissions, except for the boostrap * superuser, who can always be named as the grantor. |