From: Fred Drake Date: Thu, 19 Jul 2001 21:16:41 +0000 (+0000) Subject: Clean up some warnings from the SGI compiler. X-Git-Tag: v2.2a3~1037 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5065290e79795c655d46475ae7c92ef225ab90e;p=thirdparty%2FPython%2Fcpython.git Clean up some warnings from the SGI compiler. This is part of SF patch #434992. --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 72b141c8a474..1841024ebd5d 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -573,7 +573,7 @@ setipaddr(char* name, struct sockaddr_in * addr_ret) static PyObject * makeipaddr(struct sockaddr_in *addr) { - long x = ntohl(addr->sin_addr.s_addr); + unsigned long x = ntohl(addr->sin_addr.s_addr); char buf[100]; sprintf(buf, "%d.%d.%d.%d", (int) (x>>24) & 0xff, (int) (x>>16) & 0xff, @@ -2086,13 +2086,13 @@ PySocket_inet_aton(PyObject *self, PyObject *args) /* Have to use inet_addr() instead */ char *ip_addr; - long packed_addr; + unsigned long packed_addr; if (!PyArg_ParseTuple(args, "s:inet_aton", &ip_addr)) { return NULL; } #ifdef USE_GUSI1 - packed_addr = (long)inet_addr(ip_addr).s_addr; + packed_addr = inet_addr(ip_addr).s_addr; #else packed_addr = inet_addr(ip_addr); #endif