From 9ef8a2a5db011a0071a4232b368b1cc4d2346351 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 15 Jul 2003 07:35:14 +0000 Subject: * lib/matrix.rb: remove elements conversion to_f, to_i, to_r. * lib/cgi/session/pstore.rb: add new file. * process.c (proc_getgroups, proc_setmaxgroups): fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4072 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- hash.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'hash.c') diff --git a/hash.c b/hash.c index b87d9e2..bdb206f 100644 --- a/hash.c +++ b/hash.c @@ -1019,10 +1019,11 @@ env_delete(obj, name) ruby_setenv(nam, 0); #ifdef ENV_IGNORECASE - if (strcasecmp(nam, PATH_ENV) == 0) { + if (strcasecmp(nam, PATH_ENV) == 0) #else - if (strcmp(nam, PATH_ENV) == 0) { + if (strcmp(nam, PATH_ENV) == 0) #endif + { path_tainted = 0; } return value; -- cgit v1.1