Add ".msf" to the list of files types we should ignore when building folders.

This commit is contained in:
putterman%netscape.com 1999-03-02 18:32:39 +00:00
parent 179fda3baa
commit 20f8c5174f

View File

@ -207,7 +207,8 @@ nsShouldIgnoreFile(nsString& name)
name.RFind(".toc", PR_TRUE) == len - 4)
return PR_TRUE;
#endif
if ((len > 4 && name.RFind(".sbd", PR_TRUE) == len - 4))
if ((len > 4 && name.RFind(".sbd", PR_TRUE) == len - 4) ||
(len > 4 && name.RFind(".msf", PR_TRUE) == len - 4))
return PR_TRUE;
return PR_FALSE;
}