diff options
| author | 2020-11-03 19:40:42 +0000 | |
|---|---|---|
| committer | 2020-11-03 19:54:13 +0000 | |
| commit | 373bc208ff8f7eceecd944114cd729b5a348d918 (patch) | |
| tree | 3fc6cc31e70a00cb9670b3724e0c94256f763385 /src/modules/m_httpd_config.cpp | |
| parent | Replace ConfigTag::create with a public constructor. (diff) | |
Move FilePosition to fileutils.h and use in ConfigTag.
Diffstat (limited to 'src/modules/m_httpd_config.cpp')
| -rw-r--r-- | src/modules/m_httpd_config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_httpd_config.cpp b/src/modules/m_httpd_config.cpp index 826768d8a..2a05a81bb 100644 --- a/src/modules/m_httpd_config.cpp +++ b/src/modules/m_httpd_config.cpp @@ -50,7 +50,7 @@ class ModuleHttpConfig : public Module, public HTTPRequestEventListener for (auto& [_, tag] : ServerInstance->Config->config_data) { // Show the location of the tag in a comment. - buffer << "# " << tag->getTagLocation() << std::endl + buffer << "# " << tag->source.str() << std::endl << '<' << tag->tag << ' '; // Print out the tag with all keys aligned vertically. |
