diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | unix/tclUnixTime.c | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2001-04-10 Kevin B. Kenny <kennykb@acm.org> + + * unix/tclUnixTime.c: Fixed silly typo in calls to 'gmtime' and + 'localtime' that broke the Linux build. + 2001-04-09 Kevin B. Kenny <kennykb@acm.org> * unix/tclLoadShl.c: Added DYNAMIC_PATH to the load flags so that diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index b0c5e9f..de07aa3 100644 --- a/unix/tclUnixTime.c +++ b/unix/tclUnixTime.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixTime.c,v 1.8 2001/04/09 23:02:21 kennykb Exp $ + * RCS: @(#) $Id: tclUnixTime.c,v 1.9 2001/04/10 15:39:59 kennykb Exp $ */ #include "tclInt.h" @@ -368,7 +368,7 @@ ThreadSafeGMTime( timePtr ) gmtime_r( timePtr, tmPtr ); #else Tcl_MutexLock( & tmMutex ); - *tmPtr = gmtime( timePtr ); + *tmPtr = *gmtime( timePtr ); Tcl_MutexUnlock( &tmMutex ); #endif return tmPtr; @@ -409,7 +409,7 @@ ThreadSafeLocalTime( timePtr ) localtime_r( timePtr, tmPtr ); #else Tcl_MutexLock( & tmMutex ); - *tmPtr = localtime( timePtr ); + *tmPtr = *localtime( timePtr ); Tcl_MutexUnlock( &tmMutex ); #endif return tmPtr; |