diff options
author | Kevin B Kenny <kennykb@acm.org> | 2008-04-14 17:49:59 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2008-04-14 17:49:59 (GMT) |
commit | 278b31b91cc7b0d34299f71e36e0f49a840160ef (patch) | |
tree | d078d9982c750f9932f748e6df9796543acec234 | |
parent | 6c56c834bd637fa42f8f0ccad512ea595a9011ef (diff) | |
download | tcl-278b31b91cc7b0d34299f71e36e0f49a840160ef.zip tcl-278b31b91cc7b0d34299f71e36e0f49a840160ef.tar.gz tcl-278b31b91cc7b0d34299f71e36e0f49a840160ef.tar.bz2 |
* unix/tclUnixTime.c (NativeGetTime): Removed obsolete use of
'struct timezone' in the call to 'gettimeofday'. [Bug 1942197].
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | unix/tclUnixTime.c | 5 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2008-04-14 Kevin B. Kenny <kennykb@acm.org> + + * unix/tclUnixTime.c (NativeGetTime): Removed obsolete use of + 'struct timezone' in the call to 'gettimeofday'. [Bug 1942197]. + + 2008-04-11 Don Porter <dgp@users.sourceforge.net> * generic/tcl.h: Bump version number to 8.5.3b1 to distinguish diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index fc19d6d..f989f01 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.33 2007/12/13 15:28:42 dgp Exp $ + * RCS: @(#) $Id: tclUnixTime.c,v 1.33.2.1 2008/04/14 17:49:59 kennykb Exp $ */ #include "tclInt.h" @@ -603,9 +603,8 @@ NativeGetTime( ClientData clientData) { struct timeval tv; - struct timezone tz; - (void) gettimeofday(&tv, &tz); + (void) gettimeofday(&tv, NULL); timePtr->sec = tv.tv_sec; timePtr->usec = tv.tv_usec; } |