]> granicus.if.org Git - postgresql/commit
Fix unportable usage of printf("%m").
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 20 May 2018 22:06:00 +0000 (18:06 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 20 May 2018 22:06:00 +0000 (18:06 -0400)
commita13b47a59ffce6f3c13c8b777738a3aab1db10d3
tree6d3b4f4e4338e715b3270d228aab041eb8b6b8ce
parentc6e846446d17db40883eed91fa448e65333a0ae1
Fix unportable usage of printf("%m").

While glibc's version of printf accepts %m, most others do not;
to be portable, we have to do it the hard way with strerror(errno).
pg_verify_checksums evidently did not get that memo.

Noted while fooling around with NetBSD-current, which generates
a compiler warning for this mistake.
src/bin/pg_verify_checksums/pg_verify_checksums.c