Fixed the inappropriate refusal on paths like /u/test/../..

This commit is contained in:
Thomas Schmitt 2009-03-14 11:38:05 +00:00
parent 268d49efb8
commit d29c2bd0af
2 changed files with 2 additions and 2 deletions

View File

@ -5280,7 +5280,7 @@ int Xorriso_prepare_regex(struct XorrisO *xorriso, char *adr, int flag)
goto next_adr_part;
if(adr_part[0]=='.' && adr_part[1]=='.' && adr_part[2]==0) {
/* delete previous part */
if(xorriso->re_fill<=1) {
if(xorriso->re_fill <= 0) {
bonked= 1;
goto next_adr_part;
}

View File

@ -1 +1 @@
#define Xorriso_timestamP "2009.03.13.150838"
#define Xorriso_timestamP "2009.03.14.113811"