From 34c7492e2ceb5eb65b445cd64cbf7a9a70b32a81 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 26 Sep 2008 18:12:43 +0000 Subject: * ext/socket/socket.c (host_str): numeric address should be unsigned. [ruby-core:18971] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19593 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/socket/socket.c b/ext/socket/socket.c index 698bc60996..c2e57850c9 100644 --- a/ext/socket/socket.c +++ b/ext/socket/socket.c @@ -869,7 +869,7 @@ host_str(VALUE host, char *hbuf, size_t len) return NULL; } else if (rb_obj_is_kind_of(host, rb_cInteger)) { - long i = NUM2LONG(host); + unsigned long i = NUM2ULONG(host); make_inetaddr(htonl(i), hbuf, len); return hbuf; -- cgit v1.2.3