summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixThrd.c
diff options
context:
space:
mode:
authordas <das>2006-12-19 04:13:54 (GMT)
committerdas <das>2006-12-19 04:13:54 (GMT)
commitf4fdf5029fdd786efd3ac874e5bf2143e93e07ba (patch)
treec2b5abe0a13b8cffbe1ae8b955dfeba88a74fec5 /unix/tclUnixThrd.c
parentd5e703212bc135fbc0065ee939c6c3fa32871e6b (diff)
downloadtcl-f4fdf5029fdd786efd3ac874e5bf2143e93e07ba.zip
tcl-f4fdf5029fdd786efd3ac874e5bf2143e93e07ba.tar.gz
tcl-f4fdf5029fdd786efd3ac874e5bf2143e93e07ba.tar.bz2
* unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit.
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r--unix/tclUnixThrd.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c
index 815dc4f..c0a9500 100644
--- a/unix/tclUnixThrd.c
+++ b/unix/tclUnixThrd.c
@@ -715,13 +715,9 @@ TclpInetNtoa(
{
#ifdef TCL_THREADS
ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey);
- union {
- unsigned long l;
- unsigned char b[4];
- } u;
-
- u.l = (unsigned long) addr.s_addr;
- sprintf(tsdPtr->nabuf, "%u.%u.%u.%u", u.b[0], u.b[1], u.b[2], u.b[3]);
+ char *b = (char*) &addr.s_addr;
+
+ sprintf(tsdPtr->nabuf, "%u.%u.%u.%u", b[0], b[1], b[2], b[3]);
return tsdPtr->nabuf;
#else
return inet_ntoa(addr);