Fixing my Unix bustage. use PR_MkDir instead of mkdir

This commit is contained in:
jevering 1998-06-12 02:27:25 +00:00
parent 832fd3789d
commit eadb27c4d0
2 changed files with 2 additions and 2 deletions

View File

@ -705,7 +705,7 @@ PRBool VerifyContextVector(CTokenizer * tokenizer, PRInt32 aTags[],PRInt32 count
strcat(path,"/");
const char* name=GetTagName(aTags[i]);
strcat(path,name);
mkdir(path);
PR_MkDir(path,0);
}
if(PR_FALSE==result){
static PRBool rnd_initialized = PR_FALSE;

View File

@ -705,7 +705,7 @@ PRBool VerifyContextVector(CTokenizer * tokenizer, PRInt32 aTags[],PRInt32 count
strcat(path,"/");
const char* name=GetTagName(aTags[i]);
strcat(path,name);
mkdir(path);
PR_MkDir(path,0);
}
if(PR_FALSE==result){
static PRBool rnd_initialized = PR_FALSE;