diff options
Diffstat (limited to 'winsup/cygwin/fhandler_proc.cc')
-rw-r--r-- | winsup/cygwin/fhandler_proc.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_proc.cc b/winsup/cygwin/fhandler_proc.cc index 850107f..c070887 100644 --- a/winsup/cygwin/fhandler_proc.cc +++ b/winsup/cygwin/fhandler_proc.cc @@ -87,7 +87,7 @@ fhandler_proc::get_proc_fhandler (const char *path) * it being normalised and therefore the path may have runs of slashes * in it. */ - while (SLASH_P (*path)) + while (isdirsep (*path)) path++; /* Check if this is the root of the virtual filesystem (i.e. /proc). */ @@ -105,7 +105,7 @@ fhandler_proc::get_proc_fhandler (const char *path) bool has_subdir = false; while (*path) - if (SLASH_P (*path++)) + if (isdirsep (*path++)) { has_subdir = true; break; |