7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.40 1998/02/01 19:43:54 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.41 1998/02/02 01:28:12 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -140,7 +140,8 @@ abstime2tm(AbsoluteTime time, int *tzp, struct tm * tm, char *tzn)
140
140
};
141
141
#endif
142
142
143
- #if defined(DATEDEBUG )&& defined(HAVE_INT_TIMEZONE )
143
+ #if defined(DATEDEBUG )
144
+ #if defined(HAVE_INT_TIMEZONE )
144
145
printf ("datetime2tm- (localtime) %d.%02d.%02d %02d:%02d:%02d %s %s dst=%d\n" ,
145
146
tx -> tm_year ,tx -> tm_mon ,tx -> tm_mday ,tx -> tm_hour ,tx -> tm_min ,tx -> tm_sec ,
146
147
tzname [0 ],tzname [1 ],tx -> tm_isdst );
@@ -149,6 +150,7 @@ abstime2tm(AbsoluteTime time, int *tzp, struct tm * tm, char *tzn)
149
150
tx -> tm_year ,tx -> tm_mon ,tx -> tm_mday ,tx -> tm_hour ,tx -> tm_min ,tx -> tm_sec ,
150
151
tx -> tm_zone ,tx -> tm_isdst );
151
152
#endif
153
+ #endif
152
154
153
155
#ifdef USE_POSIX_TIME
154
156