aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_httpd_config.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-11-03 19:57:39 +0000
committerGravatar Sadie Powell2020-11-03 20:03:02 +0000
commite21af089ba5e2a6a8963a0e0f925aef6ed7cd4b8 (patch)
tree3bd89473fc796689e0eac25dc5d96525b6ed1323 /src/modules/m_httpd_config.cpp
parentMove FilePosition to fileutils.h and use in ConfigTag. (diff)
Rename ConfigTag::tag to ConfigTag::name.
Diffstat (limited to 'src/modules/m_httpd_config.cpp')
-rw-r--r--src/modules/m_httpd_config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_httpd_config.cpp b/src/modules/m_httpd_config.cpp
index 2a05a81bb..555488cd6 100644
--- a/src/modules/m_httpd_config.cpp
+++ b/src/modules/m_httpd_config.cpp
@@ -51,10 +51,10 @@ class ModuleHttpConfig : public Module, public HTTPRequestEventListener
{
// Show the location of the tag in a comment.
buffer << "# " << tag->source.str() << std::endl
- << '<' << tag->tag << ' ';
+ << '<' << tag->name << ' ';
// Print out the tag with all keys aligned vertically.
- const std::string indent(tag->tag.length() + 2, ' ');
+ const std::string indent(tag->name.length() + 2, ' ');
const ConfigTag::Items& items = tag->GetItems();
for (ConfigTag::Items::const_iterator kiter = items.begin(); kiter != items.end(); )
{