diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-27 06:18:04 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-27 06:18:04 +0000 |
commit | 1da5a489e4cc74490959f9383418ec0dda6e8090 (patch) | |
tree | 505ecd8264270cdf5ad2f822dda09baffbee0588 /ext | |
parent | fade72eec9ee6fd11245bd097af02adadb3c7639 (diff) |
merge revision(s) 19593:
* ext/socket/socket.c (host_str): numeric address should be unsigned.
[ruby-core:18971]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@21798 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r-- | ext/socket/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/socket/socket.c b/ext/socket/socket.c index 6dc4f832ac..491823ad44 100644 --- a/ext/socket/socket.c +++ b/ext/socket/socket.c @@ -840,7 +840,7 @@ host_str(host, hbuf, 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; |