Bug 1485 - Setting global properties in config file (raw text) does not have any effect
--- a/src/config-store/model/raw-text-config.cc Wed Aug 29 05:42:00 2012 -0700
+++ b/src/config-store/model/raw-text-config.cc Wed Aug 29 08:47:39 2012 -0700
@@ -115,6 +115,7 @@
void
RawTextConfigLoad::Default (void)
{
+ m_is->clear ();
m_is->seekg (0);
std::string type, name, value;
*m_is >> type >> name >> value;
@@ -132,6 +133,7 @@
void
RawTextConfigLoad::Global (void)
{
+ m_is->clear ();
m_is->seekg (0);
std::string type, name, value;
*m_is >> type >> name >> value;