From 405179d602586afb216fe23eec48a7e52751cee4 Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Fri, 24 May 2002 17:37:32 +0000 Subject: [PATCH] Fixed mbfile import ignoring files starting with a 't' --- ChangeLog | 2 ++ mbfido/mbfimport.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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. */