Commit 369c9e3b authored by Tom Lane's avatar Tom Lane

Repair missing brace in HAVE_INT_TIMEZONE case.

parent 9310075a
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.88 2001/10/18 17:30:15 thomas Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.89 2001/10/18 19:52:03 tgl Exp $
* *
* NOTES * NOTES
* *
...@@ -368,6 +368,7 @@ abstime2tm(AbsoluteTime _time, int *tzp, struct tm * tm, char **tzn) ...@@ -368,6 +368,7 @@ abstime2tm(AbsoluteTime _time, int *tzp, struct tm * tm, char **tzn)
} }
#elif defined(HAVE_INT_TIMEZONE) #elif defined(HAVE_INT_TIMEZONE)
if (tzp != NULL) if (tzp != NULL)
{
/* We have a brute force time zone per SQL99? /* We have a brute force time zone per SQL99?
* Then use it without change * Then use it without change
* since we have already rotated to the time zone. * since we have already rotated to the time zone.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment