fixed typo that would prevent stopfile use

This commit is contained in:
dockes 2009-01-21 10:17:30 +00:00
parent d0a8a37298
commit 7cb1060893

View File

@ -521,7 +521,7 @@ bool Db::open(OpenMode mode, bool keep_updated)
if (!close())
return false;
}
if (m_config->getStopfile().empty())
if (!m_config->getStopfile().empty())
m_stops.setFile(m_config->getStopfile());
string dir = m_config->getDbDir();
string ermsg;