From f1fa5ae6d99cb741f6649db337faf73107182801 Mon Sep 17 00:00:00 2001 From: "Alexander S. Aganichev" Date: Thu, 23 Oct 2003 10:44:32 +0000 Subject: [PATCH] Add -pass to Fidoconfig parser --- docs/notework.txt | 2 ++ goldlib/gcfg/gxhpt.cpp | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/docs/notework.txt b/docs/notework.txt index d7ad05c..62037fe 100644 --- a/docs/notework.txt +++ b/docs/notework.txt @@ -12,6 +12,8 @@ ______________________________________________________________________ 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 given messagebase type was omited. diff --git a/goldlib/gcfg/gxhpt.cpp b/goldlib/gcfg/gxhpt.cpp index 001a80c..5859826 100644 --- a/goldlib/gcfg/gxhpt.cpp +++ b/goldlib/gcfg/gxhpt.cpp @@ -326,6 +326,11 @@ void gareafile::ReadHPTFile(char* path, char* file, char* origin, int group) { gettok(&key, &val); aa.setdesc(key); } + else if (strieql(opt, "pass")) { + + aa.type = GMB_NONE; + break; + } } gettok(&key, &val);