We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83f558a commit 54c3e65Copy full SHA for 54c3e65
src/backend/utils/adt/nabstime.c
@@ -4,7 +4,7 @@
4
*
5
* Copyright (c) 1994, Regents of the University of California
6
7
- * $Id: nabstime.c,v 1.49 1998/12/15 15:10:03 vadim Exp $
+ * $Id: nabstime.c,v 1.50 1998/12/15 15:28:57 scrappy Exp $
8
9
*/
10
#include <stdio.h>
@@ -71,11 +71,7 @@ GetCurrentAbsoluteTime(void)
71
strftime(CTZName, MAXTZLEN, "%Z", tm);
72
#endif
73
/* XXX FreeBSD man pages indicate that this should work - thomas 1998-12-12 */
74
- /* tzn isn't defined !!! - vadim 15-12-1998 */
75
-#if 0
76
- if (tzn != NULL)
77
- strcpy(tzn, tm->tm_zone);
78
-#endif
+ strcpy(CTZName, tm->tm_zone);
79
80
#elif defined(HAVE_INT_TIMEZONE)
81
tm = localtime(&now);
0 commit comments