Skip to content
Snippets Groups Projects
Commit 26ab085f authored by deuce's avatar deuce
Browse files

Remove fexistcase() changes for Win32... breaks required side-effects.

parent 2dc95279
No related branches found
No related tags found
No related merge requests found
......@@ -503,8 +503,8 @@ BOOL DLLCALL fexistcase(char *path)
long handle;
struct _finddata_t f;
if(!strchr(path,'*') && !strchr(path,'?'))
return(fnameexist(path));
if(access(path,0)==-1 && !strchr(path,'*') && !strchr(path,'?'))
return(FALSE);
if((handle=_findfirst((char*)path,&f))==-1)
return(FALSE);
......
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