Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 83f558a

Browse files
committed
tzn undeclared in FreeBSD, commented out.
1 parent 3f7fbf8 commit 83f558a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/backend/utils/adt/nabstime.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Copyright (c) 1994, Regents of the University of California
66
*
7-
* $Id: nabstime.c,v 1.48 1998/12/14 08:11:12 scrappy Exp $
7+
* $Id: nabstime.c,v 1.49 1998/12/15 15:10:03 vadim Exp $
88
*
99
*/
1010
#include <stdio.h>
@@ -71,8 +71,11 @@ GetCurrentAbsoluteTime(void)
7171
strftime(CTZName, MAXTZLEN, "%Z", tm);
7272
#endif
7373
/* 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
7476
if (tzn != NULL)
7577
strcpy(tzn, tm->tm_zone);
78+
#endif
7679

7780
#elif defined(HAVE_INT_TIMEZONE)
7881
tm = localtime(&now);

0 commit comments

Comments
 (0)