]> granicus.if.org Git - postgresql/commit
Fix pg_basebackup output to stdout on Windows.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 14 Jul 2017 13:02:53 +0000 (16:02 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 14 Jul 2017 13:03:27 +0000 (16:03 +0300)
commit4b994a96c7086a0ca09fc34f5749b5e3e366d7b1
tree4c29cd54470e60c5c5bfa6fd4c90a770988d62e5
parentbccfb17766d845cbafc3d667ad64b66ad24a84f5
Fix pg_basebackup output to stdout on Windows.

When writing a backup to stdout with pg_basebackup on Windows, put stdout
to binary mode. Any CR bytes in the output will otherwise be output
incorrectly as CR+LF.

In the passing, standardize on using "_setmode" instead of "setmode", for
the sake of consistency. They both do the same thing, but according to
MSDN documentation, setmode is deprecated.

Fixes bug #14634, reported by Henry Boehlert. Patch by Haribabu Kommi.
Backpatch to all supported versions.

Discussion: https://www.postgresql.org/message-id/20170428082818.24366.13134@wrigleys.postgresql.org
src/bin/pg_basebackup/pg_basebackup.c
src/bin/pg_dump/pg_backup_archiver.c