aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_permchannels.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-03-30 10:12:41 +0100
committerGravatar Sadie Powell2021-03-30 10:12:41 +0100
commitf602febac5b4f5f26c1b681b2c5139965c85ad06 (patch)
tree8c469ac3259caa23c87e75bdd397e86fe887f959 /src/modules/m_permchannels.cpp
parentAlways disable TLSv1.0 and disable TLSv1.1 by default. (diff)
parentAdd support for matching multiple hosts in <connect:{allow,deny}>. (diff)
downloadinspircd++-f602febac5b4f5f26c1b681b2c5139965c85ad06.tar.gz
inspircd++-f602febac5b4f5f26c1b681b2c5139965c85ad06.tar.bz2
inspircd++-f602febac5b4f5f26c1b681b2c5139965c85ad06.zip
Merge branch 'insp3' into master.
Diffstat (limited to 'src/modules/m_permchannels.cpp')
-rw-r--r--src/modules/m_permchannels.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/m_permchannels.cpp b/src/modules/m_permchannels.cpp
index da3cd7057..6d5180bb8 100644
--- a/src/modules/m_permchannels.cpp
+++ b/src/modules/m_permchannels.cpp
@@ -77,7 +77,9 @@ 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;
const chan_hash& chans = ServerInstance->GetChans();