diff --git a/ChangeLog b/ChangeLog index e50a2fe5..46dbabbf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4786,6 +4786,8 @@ v0.33.20 10-Feb-2002 Removed nonsense error message when stopped on a signal. The html file indexes now have better translation from ANSI to low ascii and html codes. + The import function didn't import files starting with the + letter 't'. mball: Will not crash anymore when it needs more then 10 minutes to diff --git a/mbfido/mbfimport.c b/mbfido/mbfimport.c index cfdb13ce..21140676 100644 --- a/mbfido/mbfimport.c +++ b/mbfido/mbfimport.c @@ -94,7 +94,7 @@ void ImportFiles(int Area) 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. */