]> git.p6c8.net - devedit.git/commitdiff
Restored the version of check_path() found in revision 1.34 of Tool.pm
authorpcanterino <>
Sat, 23 Jul 2005 16:44:43 +0000 (16:44 +0000)
committerpcanterino <>
Sat, 23 Jul 2005 16:44:43 +0000 (16:44 +0000)
modules/Tool.pm

index 3ef4a10ec3aec602b323dea98db692bc1fea6ebb..16d5d72acd2b3aeefc1b45d5e9e998598cdfb209 100644 (file)
@@ -68,8 +68,9 @@ sub check_path($$)
  $first    = abs_path($first);
 
  my $last  = file_name($path);
+ $last     = '' if($last eq '.');
 
- if(-d $first.'/'.$last && (not -l $first.'/'.$last) && -r $first.'/'.$last && -x $first.'/'.$last)
+ if($last eq '..' || ($^O eq 'MSWin32' && $last =~ m!^\.\.\.+$!))
  {
   $first = abs_path($first.'/'.$last);
   $last  = '';

patrick-canterino.de