зеркало из https://github.com/mozilla/gecko-dev.git
Fixing my Unix bustage. use PR_MkDir instead of mkdir
This commit is contained in:
Родитель
832fd3789d
Коммит
eadb27c4d0
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче