tapefs: case insensitive walks

front
cinap_lenrek 2011-09-17 05:21:19 +02:00
parent 0089c44663
commit 92f22e7b5a
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ rwalk(Fid *f)
if(!dir->replete)
popdir(dir);
for(r=dir->child; r; r=r->next)
if(r->busy && strcmp(name, r->name)==0)
if(r->busy && cistrcmp(name, r->name)==0)
goto Accept;
break; /* file not found */
}