Beos build bustage - 82205

This commit is contained in:
mkaply@us.ibm.com
2001-06-30 20:26:40 +00:00
parent 1d73a60a15
commit 1af7019615

View File

@@ -1174,8 +1174,10 @@ nsLocalFile::IsSpecial(PRBool *_retval)
VALIDATE_STAT_CACHE();
*_retval = S_ISCHR(mCachedStat.st_mode) ||
S_ISBLK(mCachedStat.st_mode) ||
S_ISFIFO(mCachedStat.st_mode) ||
S_ISSOCK(mCachedStat.st_mode);
#ifndef XP_BEOS
S_ISSOCK(mCachedStat.st_mode) ||
#endif
S_ISFIFO(mCachedStat.st_mode);
return NS_OK;
}