Fixed mbfile import ignoring files starting with a 't'
This commit is contained in:
parent
7c5bb94a6b
commit
405179d602
@ -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
|
||||||
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user