Fixed mbfile import ignoring files starting with a 't'

This commit is contained in:
Michiel Broek 2002-05-24 17:37:32 +00:00
parent 7c5bb94a6b
commit 405179d602
2 changed files with 3 additions and 1 deletions

View File

@ -4786,6 +4786,8 @@ v0.33.20 10-Feb-2002
Removed nonsense error message when stopped on a signal. Removed nonsense error message when stopped on a signal.
The html file indexes now have better translation from ANSI The html file indexes now have better translation from ANSI
to low ascii and html codes. to low ascii and html codes.
The import function didn't import files starting with the
letter 't'.
mball: mball:
Will not crash anymore when it needs more then 10 minutes to Will not crash anymore when it needs more then 10 minutes to

View File

@ -94,7 +94,7 @@ void ImportFiles(int Area)
while (fgets(String, 4095, fbbs) != NULL) { while (fgets(String, 4095, fbbs) != NULL) {
if ((String[0] != ' ') && (String[0] != 't')) { if ((String[0] != ' ') && (String[0] != '\t')) {
/* /*
* New file entry, check if there has been a file that is not yet saved. * New file entry, check if there has been a file that is not yet saved.
*/ */