summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--file.c6
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9304bd91d2..8fdacae5ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Sep 6 05:48:26 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
+
+ * file.c (rb_path_check): nothing to check under DOSISH.
+ [ruby-list:35772]
+
Fri Sep 6 05:03:50 2002 Minero Aoki <aamine@loveruby.net>
* gc.c (rb_gc): should mark parser.
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;
}