1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-27 22:56:53 +03:00

Tamotsu Nakagawa has posted a fix for this to a local mail list in

Japan. Can someone comment on this? According to him, with the patch
now only the geometry test fails.

 Tatsuo Ishii
This commit is contained in:
Bruce Momjian 2000-06-27 18:08:49 +00:00
parent 5bb8b62983
commit b601c8d882

View File

@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.69 2000/06/09 01:11:08 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.70 2000/06/27 18:08:49 momjian Exp $
* *
* NOTES * NOTES
* *
@ -215,8 +215,9 @@ GetCurrentTime(struct tm * tm)
void void
abstime2tm(AbsoluteTime time, int *tzp, struct tm * tm, char *tzn) abstime2tm(AbsoluteTime _time, int *tzp, struct tm * tm, char *tzn)
{ {
time_t time = (time_t) _time;
#ifdef USE_POSIX_TIME #ifdef USE_POSIX_TIME
struct tm *tx; struct tm *tx;