No need to pass children
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 8 Jun 2011 14:30:12 +0000 (16:30 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 8 Jun 2011 14:30:12 +0000 (16:30 +0200)
src/filter_frontend_net.cpp
src/filter_virt_db.cpp
src/filter_z3950_client.cpp

index 362e489..6fc9ff4 100644 (file)
@@ -410,7 +410,7 @@ void mp::filter::FrontendNet::configure(const xmlNode * ptr, bool test_only)
         }
         else if (!strcmp((const char *) ptr->name, "connect-max"))
         {
-            m_p->m_connect_max = mp::xml::get_int(ptr->children, 0);
+            m_p->m_connect_max = mp::xml::get_int(ptr, 0);
         }
         else
         {
index c9474c8..71ab2c3 100644 (file)
@@ -943,7 +943,7 @@ void mp::filter::VirtualDB::configure(const xmlNode * ptr, bool test_only)
             continue;
         if (!strcmp((const char *) ptr->name, "pass-vhosts"))
         {
-            m_p->pass_vhosts = mp::xml::get_bool(ptr->children, false);
+            m_p->pass_vhosts = mp::xml::get_bool(ptr, false);
         }
         else if (!strcmp((const char *) ptr->name, "virtual"))
         {
index b975f50..06f58e1 100644 (file)
@@ -465,7 +465,7 @@ void yf::Z3950Client::configure(const xmlNode *ptr, bool test_only)
             continue;
         if (!strcmp((const char *) ptr->name, "timeout"))
         {
-            m_p->m_timeout_sec = mp::xml::get_int(ptr->children, 30);
+            m_p->m_timeout_sec = mp::xml::get_int(ptr, 30);
         }
         else if (!strcmp((const char *) ptr->name, "default_target"))
         {
@@ -477,11 +477,11 @@ void yf::Z3950Client::configure(const xmlNode *ptr, bool test_only)
         }
         else if (!strcmp((const char *) ptr->name, "max-sockets"))
         {
-            m_p->m_max_sockets = mp::xml::get_int(ptr->children, 0);
+            m_p->m_max_sockets = mp::xml::get_int(ptr, 0);
         }
         else if (!strcmp((const char *) ptr->name, "force_close"))
         {
-            m_p->m_force_close = mp::xml::get_bool(ptr->children, 0);
+            m_p->m_force_close = mp::xml::get_bool(ptr, 0);
         }
         else
         {