Don't try verifying the db's in a multi-access database case

This commit is contained in:
relyea%netscape.com 2002-04-05 00:10:39 +00:00
Родитель 0f96381a15
Коммит 6e6defc79f
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -285,6 +285,11 @@ VerifyCertDir(char *dir, char *keyName)
{
char fn [FNSIZE];
/* don't try verifying if we don't have a local directory */
if (strncmp(dir,"remote:",sizeof("remote:")-1) == 0) {
return;
}
sprintf (fn, "%s/cert7.db", dir);
if (PR_Access (fn, PR_ACCESS_EXISTS))