Bug 299017. Fix for firefox 2.0 and firefox 1.5.0.10, password file.
This commit is contained in:
parent
a94dd41db4
commit
a2ef7b4582
@ -582,7 +582,14 @@ bool isFireFox2 = false;
|
|||||||
|
|
||||||
strcpy(signonFilePath, firefoxProfileDir);
|
strcpy(signonFilePath, firefoxProfileDir);
|
||||||
strcat(signonFilePath, "/");
|
strcat(signonFilePath, "/");
|
||||||
strcat(signonFilePath, SIGNON_FILE_NAME);
|
if (isFireFox2 )
|
||||||
|
{
|
||||||
|
strcat(signonFilePath, SIGNON_FILE_NAME2);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
strcat(signonFilePath, SIGNON_FILE_NAME);
|
||||||
|
}
|
||||||
|
|
||||||
strcpy(tempFilePath, firefoxProfileDir);
|
strcpy(tempFilePath, firefoxProfileDir);
|
||||||
strcat(tempFilePath, "/");
|
strcat(tempFilePath, "/");
|
||||||
@ -720,7 +727,7 @@ bool isFireFox2 = false;
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if( (retValue = WriteLine(t->hostName)) != FPM_TRUE )
|
if( (retValue = WriteLine("")) != FPM_TRUE )
|
||||||
goto write_signon_error;
|
goto write_signon_error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user