Add -pass to Fidoconfig parser

This commit is contained in:
Alexander S. Aganichev 2003-10-23 10:44:32 +00:00
parent 99b9606ea5
commit f1fa5ae6d9
2 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,8 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/ Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________ ______________________________________________________________________
+ Added -pass switch support to Fidoconfig parser.
- Fixed bug in HPT config parser: areas which was not explicitly - Fixed bug in HPT config parser: areas which was not explicitly
given messagebase type was omited. given messagebase type was omited.

View File

@ -326,6 +326,11 @@ void gareafile::ReadHPTFile(char* path, char* file, char* origin, int group) {
gettok(&key, &val); gettok(&key, &val);
aa.setdesc(key); aa.setdesc(key);
} }
else if (strieql(opt, "pass")) {
aa.type = GMB_NONE;
break;
}
} }
gettok(&key, &val); gettok(&key, &val);