summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixChan.c
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-01-24 02:30:15 (GMT)
committerhobbs <hobbs@noemail.net>2000-01-24 02:30:15 (GMT)
commit6189554c3c606883d573b901cee50837b4e2154b (patch)
tree9bb7c963e7a49291228a78ce28428e1a723389b8 /unix/tclUnixChan.c
parent980926dee9f275fbbea979d0965c74a0b45d6662 (diff)
downloadtcl-6189554c3c606883d573b901cee50837b4e2154b.zip
tcl-6189554c3c606883d573b901cee50837b4e2154b.tar.gz
tcl-6189554c3c606883d573b901cee50837b4e2154b.tar.bz2
* unix/tclUnixPort.h: moved include of <utime.h> lower since some
systems (UTS) require sys/types.h to be included first [Bug: 4031] * unix/tclUnixChan.c (CreateSocketAddress): changed comparison with -1 to 0xFFFFFFFFFFFFFFF, which is the pedantic way to say -1 for both 32 bit and 64 bit systems. [Bug: 3878] FossilOrigin-Name: 383590b98af9e385b1ea8a9796635b8a72835b26
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r--unix/tclUnixChan.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index aa38d28..7d063f3 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixChan.c,v 1.11 1999/10/29 03:04:58 hobbs Exp $
+ * RCS: @(#) $Id: tclUnixChan.c,v 1.12 2000/01/24 02:30:16 hobbs Exp $
*/
#include "tclInt.h" /* Internal definitions for Tcl. */
@@ -2122,7 +2122,11 @@ CreateSocketAddress(sockaddrPtr, host, port)
native = Tcl_UtfToExternalDString(NULL, host, -1, &ds);
}
addr.s_addr = inet_addr(native); /* INTL: Native. */
- if (addr.s_addr == -1) {
+ /*
+ * 0xFFFFFFFFFFFFFFF is the pedantic way to say -1
+ * for either 32 or 64 bits systems.
+ */
+ if (addr.s_addr == 0xFFFFFFFFFFFFFFF) {
hostent = gethostbyname(native); /* INTL: Native. */
if (hostent != NULL) {
memcpy((VOID *) &addr,