summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixSend.c
diff options
context:
space:
mode:
authorrmax <rmax>2002-07-18 16:02:47 (GMT)
committerrmax <rmax>2002-07-18 16:02:47 (GMT)
commitc3cbd7b77ed67e1b516d71ad0baa69ba24a02bb7 (patch)
tree0d8c16824aec271f764ec5be64357301870e575e /unix/tkUnixSend.c
parent8f4644e88f31658d9a5e8e17098a0a3394968913 (diff)
downloadtk-c3cbd7b77ed67e1b516d71ad0baa69ba24a02bb7.zip
tk-c3cbd7b77ed67e1b516d71ad0baa69ba24a02bb7.tar.gz
tk-c3cbd7b77ed67e1b516d71ad0baa69ba24a02bb7.tar.bz2
* unix/tkUnixSend.c: Using Tcl_GetTime instead of TclpGetTime.
Diffstat (limited to 'unix/tkUnixSend.c')
-rw-r--r--unix/tkUnixSend.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tkUnixSend.c b/unix/tkUnixSend.c
index ea0d393..8525afa 100644
--- a/unix/tkUnixSend.c
+++ b/unix/tkUnixSend.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUnixSend.c,v 1.8 2002/06/19 19:37:55 mdejong Exp $
+ * RCS: @(#) $Id: tkUnixSend.c,v 1.9 2002/07/18 16:02:48 rmax Exp $
*/
#include "tkPort.h"
@@ -1104,7 +1104,7 @@ Tk_SendCmd(clientData, interp, argc, argv)
prevRestrictProc = Tk_RestrictEvents(SendRestrictProc,
(ClientData) NULL, &prevArg);
- TclpGetTime(&timeout);
+ Tcl_GetTime(&timeout);
timeout.sec += 2;
while (!pending.gotResponse) {
if (!TkUnixDoOneXEvent(&timeout)) {
@@ -1128,7 +1128,7 @@ Tk_SendCmd(clientData, interp, argc, argv)
strcpy(pending.result, msg);
pending.gotResponse = 1;
} else {
- TclpGetTime(&timeout);
+ Tcl_GetTime(&timeout);
timeout.sec += 2;
}
}