fixed stupid typo that added a ! before my_access

This commit is contained in:
unknown 2005-05-20 16:53:41 -05:00
parent c1ae672add
commit 9b8e02741a

View File

@ -226,7 +226,7 @@ void symdirget(char *dir)
{
char buff[FN_REFLEN];
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;
uint length;