diff --git a/src/bin/pg_dump/dumputils.h b/src/bin/pg_dump/dumputils.h index 10f6e27c0a..0fa47c9e3c 100644 --- a/src/bin/pg_dump/dumputils.h +++ b/src/bin/pg_dump/dumputils.h @@ -25,9 +25,10 @@ * We don't print the timezone on Windows, because the names are long and * localized, which means they may contain characters in various random * encodings; this has been seen to cause encoding errors when reading the - * dump script. Think not to get around that by using %z, because - * (1) %z is not portable to pre-C99 systems, and - * (2) %z doesn't actually act differently from %Z on Windows anyway. + * dump script. One could now possibly get around that by using %z, but %z + * was previously not portable to pre-C99 systems, and also previously %z + * didn't actually act differently from %Z on Windows. But of these problems + * might be obsolete now. */ #ifndef WIN32 #define PGDUMP_STRFTIME_FMT "%Y-%m-%d %H:%M:%S %Z"