Change for temporary stat() call.

git-svn-id: svn://10.0.0.236/trunk@23998 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rhp%netscape.com
1999-03-12 23:16:52 +00:00
parent 62c22bea64
commit 4f3fc78aaa

View File

@@ -223,7 +223,7 @@ XP_Stat(const char * name, XP_StatStruct * info, XP_FileType type)
char *newName = WH_FileName(name, type);
if (!newName) return -1;
result = _stat( newName, info );
result = stat( newName, info );
PR_Free(newName);
break;
}