1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-24 20:27:22 +01:00

bugfix: an error in regex list that should match pf.conf made it match all kinds of configs

This commit is contained in:
Vadim Kurland 2011-03-05 22:40:02 -08:00
parent a7dfe07409
commit 6a331a7642

View File

@ -88,8 +88,7 @@ void IC_PlatformWarningPage::initializePage()
QList<QRegExp> pf_conf_re;
pf_conf_re << QRegExp("^scrub\\s+\\S+")
<< QRegExp("^set\\s+timeout\\s+\\S+")
<< QRegExp("");
<< QRegExp("^set\\s+timeout\\s+\\S+");
m_dialog->configFileBrowser->clear();
m_dialog->platform->setText(tr("Unknown"));