Skip to content
Snippets Groups Projects
Commit 350970e6 authored by rswindell's avatar rswindell
Browse files

Changed one remaining fexist() check for FILE_ID.DIZ to fexistcase().

parent e4efb311
No related branches found
No related tags found
No related merge requests found
......@@ -764,10 +764,12 @@ int main(int argc, char **argv)
sprintf(tmp,"%sFILE_ID.DIZ",scfg.temp_dir);
remove(tmp);
system(cmdstr(scfg.fextr[i]->cmd,str,"FILE_ID.DIZ",NULL));
if(!fexist(tmp)) {
if(!fexistcase(tmp)) {
sprintf(tmp,"%sDESC.SDI",scfg.temp_dir);
remove(tmp);
system(cmdstr(scfg.fextr[i]->cmd,str,"DESC.SDI",NULL)); }
system(cmdstr(scfg.fextr[i]->cmd,str,"DESC.SDI",NULL));
fexistcase(tmp);
}
if((file=nopen(tmp,O_RDONLY))!=-1) {
memset(ext,0,513);
read(file,ext,512);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment