From 6478f6fa70a97483629a6e6382e817de23fe948d Mon Sep 17 00:00:00 2001 From: das Date: Tue, 19 Dec 2006 04:33:53 +0000 Subject: * unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit. --- unix/tclUnixThrd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c index c0a9500..7fb692d 100644 --- a/unix/tclUnixThrd.c +++ b/unix/tclUnixThrd.c @@ -19,7 +19,7 @@ #include "pthread.h" typedef struct ThreadSpecificData { - char nabuf[16]; + char nabuf[17]; } ThreadSpecificData; static Tcl_ThreadDataKey dataKey; @@ -715,8 +715,8 @@ TclpInetNtoa( { #ifdef TCL_THREADS ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey); - char *b = (char*) &addr.s_addr; - + unsigned char *b = (unsigned char*) &addr.s_addr; + sprintf(tsdPtr->nabuf, "%u.%u.%u.%u", b[0], b[1], b[2], b[3]); return tsdPtr->nabuf; #else -- cgit v0.12