diff options
author | Noah Misch <noah@leadboat.com> | 2019-06-08 10:12:26 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2019-06-08 10:12:26 -0700 |
commit | 31d250e049b4e3d51a635edaa2221c11815e40e7 (patch) | |
tree | 974dc2122d471fa09c16ad0658d3353cc8b644e6 /src/bin/pg_basebackup/pg_basebackup.c | |
parent | 92c4abc73693690ce9ff13ede160f0dcb0a2de7b (diff) | |
download | postgresql-31d250e049b4e3d51a635edaa2221c11815e40e7.tar.gz postgresql-31d250e049b4e3d51a635edaa2221c11815e40e7.zip |
Update stale comments, and fix comment typos.
Diffstat (limited to 'src/bin/pg_basebackup/pg_basebackup.c')
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 9f0bede93b9..63f554307cd 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -1681,12 +1681,7 @@ GenerateRecoveryConf(PGconn *conn) initPQExpBuffer(&conninfo_buf); for (option = connOptions; option && option->keyword; option++) { - /* - * Do not emit this setting if: - the setting is "replication", - * "dbname" or "fallback_application_name", since these would be - * overridden by the libpqwalreceiver module anyway. - not set or - * empty. - */ + /* Omit empty settings and those libpqwalreceiver overrides. */ if (strcmp(option->keyword, "replication") == 0 || strcmp(option->keyword, "dbname") == 0 || strcmp(option->keyword, "fallback_application_name") == 0 || |