From da29af8cba49d51e53d6e68237ccbf6370b6dd1f Mon Sep 17 00:00:00 2001
From: Attila Molnar
Date: Thu, 25 Feb 2016 16:12:09 +0100
Subject: Convert WriteNumeric() calls to pass the parameters of the numeric as
method parameters
---
src/modules/m_httpd_stats.cpp | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
(limited to 'src/modules/m_httpd_stats.cpp')
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp
index 541e080f5..eb8e856ac 100644
--- a/src/modules/m_httpd_stats.cpp
+++ b/src/modules/m_httpd_stats.cpp
@@ -109,10 +109,12 @@ class ModuleHttpStats : public Module, public HTTPRequestEventListener
data << "" << ServerInstance->startup_time << "";
data << "";
- const std::vector& isupport = ServerInstance->ISupport.GetLines();
- for (std::vector::const_iterator it = isupport.begin(); it != isupport.end(); it++)
+ const std::vector& isupport = ServerInstance->ISupport.GetLines();
+ for (std::vector::const_iterator i = isupport.begin(); i != isupport.end(); ++i)
{
- data << Sanitize(*it) << std::endl;
+ const Numeric::Numeric& num = *i;
+ for (std::vector::const_iterator j = num.GetParams().begin(); j != num.GetParams().end()-1; ++j)
+ data << "" << Sanitize(*j) << "" << std::endl;
}
data << "";
std::vector xltypes = ServerInstance->XLines->GetAllTypes();
--
cgit v1.3.1-10-gc9f91