Commit 2536b593 authored by reggie@mdk10.(none)'s avatar reggie@mdk10.(none)

fixed stupid typo that added a ! before my_access

parent 48c58453
...@@ -226,7 +226,7 @@ void symdirget(char *dir) ...@@ -226,7 +226,7 @@ void symdirget(char *dir)
{ {
char buff[FN_REFLEN]; char buff[FN_REFLEN];
char *pos=strend(dir); char *pos=strend(dir);
if (dir[0] && pos[-1] != FN_DEVCHAR && !my_access(dir, F_OK)) if (dir[0] && pos[-1] != FN_DEVCHAR && my_access(dir, F_OK))
{ {
File file; File file;
uint length; uint length;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment