summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-15 07:35:14 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-15 07:35:14 +0000
commit9ef8a2a5db011a0071a4232b368b1cc4d2346351 (patch)
tree566ed5a268701be4d60000769972440d4b6c553c /hash.c
parentbdfce148a7f85a14e24c6365e72ba59241c4be9f (diff)
* 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
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/hash.c b/hash.c
index b87d9e268d..bdb206ff56 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;