From 0352d32f05b42bb31fe98e0fa3582ef4e4689e79 Mon Sep 17 00:00:00 2001 From: akr Date: Wed, 2 Jan 2008 06:24:27 +0000 Subject: * util.c (ruby_strtoul): locale independent strtoul is implemented to avoid "i".to_i(36) cause 0 under tr_TR locale. This is newly implemented, not a copy of missing/strtoul.c. * include/ruby/ruby.h (ruby_strtoul): declared. (STRTOUL): defined to use ruby_strtoul. * bignum.c, pack.c, ext/socket/socket.c: use STRTOUL. * configure.in (strtoul): don't check. * missing/strtoul.c: removed. * include/ruby/missing.h (strtoul): removed. * common.mk (strtoul.o): removed. * LEGAL (missing/strtoul.c): removed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/socket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/socket') diff --git a/ext/socket/socket.c b/ext/socket/socket.c index c7b2c928b6..01294b218f 100644 --- a/ext/socket/socket.c +++ b/ext/socket/socket.c @@ -817,7 +817,7 @@ str_isnumber(const char *p) if (!p || *p == '\0') return 0; ep = NULL; - (void)strtoul(p, &ep, 10); + (void)STRTOUL(p, &ep, 10); if (ep && *ep == '\0') return 1; else @@ -3165,7 +3165,7 @@ sock_s_getservbyname(int argc, VALUE *argv) char *s = RSTRING_PTR(service); char *end; - port = strtoul(s, &end, 0); + port = STRTOUL(s, &end, 0); if (*end != '\0') { rb_raise(rb_eSocket, "no such service %s/%s", s, RSTRING_PTR(proto)); } -- cgit v1.2.3