From 458673dd8abf2a26f3308873c1d83c6dfa273964 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 5 Sep 2002 20:53:31 +0000 Subject: * file.c (rb_path_check): nothing to check under DOSISH. [ruby-list:35772] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2803 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'file.c') diff --git a/file.c b/file.c index 148ef04925..a32d962df1 100644 --- a/file.c +++ b/file.c @@ -2343,6 +2343,7 @@ is_absolute_path(path) return 0; } +#ifndef DOSISH static int path_check_1(path) VALUE path; @@ -2371,7 +2372,7 @@ path_check_1(path) && (!p || !(st.st_mode & S_ISVTX)) #endif ) { - rb_warn("Unsecure world writeable dir %s , mode 0%o", p0, st.st_mode); + rb_warn("Insecure world writable dir %s , mode 0%o", p0, st.st_mode); if (p) *p = '/'; return 0; } @@ -2382,11 +2383,13 @@ path_check_1(path) *p = '\0'; } } +#endif int rb_path_check(path) char *path; { +#ifndef DOSISH char *p0, *p, *pend; const char sep = PATH_SEP_CHAR; @@ -2406,6 +2409,7 @@ rb_path_check(path) p = strchr(p0, sep); if (!p) p = pend; } +#endif return 1; } -- cgit v1.2.3