aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/nabstime.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1999-02-21 03:49:55 +0000
committerMarc G. Fournier <scrappy@hub.org>1999-02-21 03:49:55 +0000
commit8c3e8a8a0e432b709ad45b452612f744bacf1514 (patch)
treef6dd8c40d09730dd5a44cd1ac19d4c50b002b47c /src/backend/utils/adt/nabstime.c
parent1efa3f42280fce080e47fc4491a809240cbe464a (diff)
downloadpostgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.tar.gz
postgresql-8c3e8a8a0e432b709ad45b452612f744bacf1514.zip
From: Tatsuo Ishii <t-ishii@sra.co.jp>
Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef NOT_USED" for current. I have tested these patches in that the postgres binaries are identical.
Diffstat (limited to 'src/backend/utils/adt/nabstime.c')
-rw-r--r--src/backend/utils/adt/nabstime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/nabstime.c b/src/backend/utils/adt/nabstime.c
index f4a0da81814..8e3b1463ee8 100644
--- a/src/backend/utils/adt/nabstime.c
+++ b/src/backend/utils/adt/nabstime.c
@@ -4,7 +4,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nabstime.c,v 1.52 1999/02/13 23:19:24 momjian Exp $
+ * $Id: nabstime.c,v 1.53 1999/02/21 03:49:32 scrappy Exp $
*
*/
#include <stdio.h>
@@ -63,7 +63,7 @@ GetCurrentAbsoluteTime(void)
CTimeZone = -tm->tm_gmtoff; /* tm_gmtoff is Sun/DEC-ism */
CDayLight = (tm->tm_isdst > 0);
-#if 0
+#ifdef NOT_USED
/*
* XXX is there a better way to get local timezone string w/o
* tzname? - tgl 97/03/18