pgsql: Fix another incorrect data type choice from commit dc2123400.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix another incorrect data type choice from commit dc2123400.
Дата
Msg-id E1rIYHb-00CBpH-GK@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix another incorrect data type choice from commit dc2123400.

add_file_to_manifest declared its mtime argument as pg_time_t,
apparently on the principle that copy-and-paste from the backend
is fine.  However, the callers are passing struct stat's st_mtime
field which is plain time_t, and add_file_to_manifest itself is
passing the value to gmtime(3) which expects plain time_t,
so the whole thing would not work at all on any platform where
those types are different.  Fortunately we can just switch this
variable to time_t.

Per warnings from assorted buildfarm members.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3f1fd416316cbb66de61ac1ac34839f025b0b242

Modified Files
--------------
src/bin/pg_combinebackup/write_manifest.c | 2 +-
src/bin/pg_combinebackup/write_manifest.h | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Fix incorrect format placeholders
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Doc: specify aclitem syntax more clearly.