summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-19 06:43:58 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-19 06:43:58 +0000
commite60deb155585c410b85d417002d1f4f32062de19 (patch)
treea2c527cf4353e88720cdc094e3fa2cc55dd8fd5d /process.c
parent87bf8b1dc31de2eaeafe5e75eaa04571926302ea (diff)
* file.c (path_check_1): should check directory sticky bits.
* process.c (security): need not to warn twice. * marshal.c (r_object): complete restoration before calling r_regist(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2092 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/process.c b/process.c
index e4b633c8ed..8da5953573 100644
--- a/process.c
+++ b/process.c
@@ -431,9 +431,6 @@ security(str)
if (rb_safe_level() > 0) {
rb_raise(rb_eSecurityError, "Insecure PATH - %s", str);
}
- else {
- rb_warn("Insecure PATH - %s", str);
- }
}
}