diff options
author | Kevin B Kenny <kennykb@acm.org> | 2001-04-10 18:32:39 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2001-04-10 18:32:39 (GMT) |
commit | a92611e9ae6caf8a0864552f968a4f04e97ee28e (patch) | |
tree | 64ae45fd633d0113984f193dbf1fc4bf393cb7e9 /unix | |
parent | ebe5437f34f4fde04bbe3cb31e365f4e70781b3b (diff) | |
download | tcl-a92611e9ae6caf8a0864552f968a4f04e97ee28e.zip tcl-a92611e9ae6caf8a0864552f968a4f04e97ee28e.tar.gz tcl-a92611e9ae6caf8a0864552f968a4f04e97ee28e.tar.bz2 |
Altered tclUnixTime.c in hopes of better K&R compatibility.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixTime.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index dd07166..d3235b1 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.10 2001/04/10 15:43:48 kennykb Exp $ + * RCS: @(#) $Id: tclUnixTime.c,v 1.11 2001/04/10 18:32:39 kennykb Exp $ */ #include "tclInt.h" @@ -368,7 +368,7 @@ ThreadSafeGMTime( timePtr ) gmtime_r( timePtr, tmPtr ); #else Tcl_MutexLock( & tmMutex ); - *tmPtr = *( gmtime( timePtr ) ); + memcpy( (VOID *) tmPtr, (VOID *) gmtime( timePtr ), sizeof ( struct tm ) ); Tcl_MutexUnlock( &tmMutex ); #endif return tmPtr; @@ -409,7 +409,9 @@ ThreadSafeLocalTime( timePtr ) localtime_r( timePtr, tmPtr ); #else Tcl_MutexLock( & tmMutex ); - *tmPtr = *( localtime( timePtr ) ); + memcpy( (VOID *) (tmPtr), + (VOID *) ( localtime( timePtr ) ), + sizeof (struct tm) ); Tcl_MutexUnlock( &tmMutex ); #endif return tmPtr; |