summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-03-21 01:25:33 +0000
committerSadie Powell <sadie@witchery.services>2021-03-21 01:25:33 +0000
commit7cfeb971666b3a6709fe61bd01478697e6433f50 (patch)
tree87b75b022a6e156c37e5bff96cc40c46b20ac666 /src
parent99bb7ac8bd5844d8ebb4795bb72a02024a28e688 (diff)
Improve the header messages of the filter and permchannels modules.
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_filter.cpp4
-rw-r--r--src/modules/m_permchannels.cpp5
2 files changed, 7 insertions, 2 deletions
diff --git a/src/modules/m_filter.cpp b/src/modules/m_filter.cpp
index 566b46912..aea68e4cf 100644
--- a/src/modules/m_filter.cpp
+++ b/src/modules/m_filter.cpp
@@ -962,7 +962,9 @@ bool ModuleFilter::Tick(time_t)
return true;
}
- stream << "# This file is automatically generated by the filter module. Any changes will be overwritten." << std::endl
+ stream
+ << "# This file was automatically generated by the " << INSPIRCD_VERSION << " filter module on " << InspIRCd::TimeString(ServerInstance->Time()) << "." << std::endl
+ << "# Any changes to this file will be automatically overwritten." << std::endl
<< "# If you want to convert this to a normal config file you *MUST* remove the generated=\"yes\" keys!" << std::endl
<< std::endl
<< "<config format=\"xml\">" << std::endl;
diff --git a/src/modules/m_permchannels.cpp b/src/modules/m_permchannels.cpp
index fdc75ec34..0651f5cdc 100644
--- a/src/modules/m_permchannels.cpp
+++ b/src/modules/m_permchannels.cpp
@@ -77,7 +77,10 @@ static bool WriteDatabase(PermChannel& permchanmode, Module* mod, bool save_list
return false;
}
- stream << "# This file is automatically generated by m_permchannels. Any changes will be overwritten." << std::endl
+ stream
+ << "# This file was automatically generated by the " << INSPIRCD_VERSION << " permchannels module on " << InspIRCd::TimeString(ServerInstance->Time()) << "." << std::endl
+ << "# Any changes to this file will be automatically overwritten." << std::endl
+ << std::endl
<< "<config format=\"xml\">" << std::endl;
const chan_hash& chans = ServerInstance->GetChans();