Fix the bustage for bug 381247 on Solaris. Use the POSIX macro S_ISDIR.r=benjamin.

This commit is contained in:
alfred.peng@sun.com 2007-05-23 06:30:45 -07:00
Родитель fd495531a8
Коммит 0202ed2564
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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