зеркало из https://github.com/mozilla/pjs.git
Fix the bustage for bug 381247 on Solaris. Use the POSIX macro S_ISDIR.r=benjamin.
This commit is contained in:
Родитель
fd495531a8
Коммит
0202ed2564
|
@ -45,7 +45,7 @@ static int
|
|||
does_file_exist(char *file)
|
||||
{
|
||||
struct stat sb;
|
||||
return stat(file, &sb) == 0 && !IS_DIR(sb.st_mode);
|
||||
return stat(file, &sb) == 0 && !S_ISDIR(sb.st_mode);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче