Oops, sorry...meant to commit the patch from Thomas for tzn->CTZName

This commit is contained in:
Marc G. Fournier 1998-12-15 15:28:57 +00:00
parent 83f558afdd
commit 54c3e65242
1 changed files with 2 additions and 6 deletions

View File

@ -4,7 +4,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $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 $
*
*/
#include <stdio.h>
@ -71,11 +71,7 @@ GetCurrentAbsoluteTime(void)
strftime(CTZName, MAXTZLEN, "%Z", tm);
#endif
/* XXX FreeBSD man pages indicate that this should work - thomas 1998-12-12 */
/* tzn isn't defined !!! - vadim 15-12-1998 */
#if 0
if (tzn != NULL)
strcpy(tzn, tm->tm_zone);
#endif
strcpy(CTZName, tm->tm_zone);
#elif defined(HAVE_INT_TIMEZONE)
tm = localtime(&now);