| 49 |
if (lstat(fname, &sb) != FAIL && S_ISDIR(sb.st_mode)) |
49 |
if (lstat(fname, &sb) != FAIL && S_ISDIR(sb.st_mode)) |
| 51 |
else if (lstat(strconcat(fname, "/"), &sb) != FAIL && S_ISDIR(sb.st_mode)) |
51 |
else if (lstat(strconcat(fname, "/."), &sb) != FAIL && S_ISDIR(sb.st_mode)) |