diff options
author | aquanight <aquanight@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-01-25 19:59:07 +0000 |
---|---|---|
committer | aquanight <aquanight@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-01-25 19:59:07 +0000 |
commit | f40c98ecabc2ac5d525316a900043bb154c4cccc (patch) | |
tree | efbf01d5336988c098a6e2152572823a241a2adb /src/modules | |
parent | 0b919e6a24ae389d8da0adc49c10cbdcf4d0acc5 (diff) |
Fix a typo in an m_callerid error message, and add m_callerid and m_filter <exemptfromfilter> to example conf.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8748 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_callerid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp index 4faa67945..6d7d8413f 100644 --- a/src/modules/m_callerid.cpp +++ b/src/modules/m_callerid.cpp @@ -333,7 +333,7 @@ public: throw ModuleException("Invalid cooldown value, negative"); default: /* Yikes */ - throw ModuleException("Invalid maxaccepts value, unknown config error"); + throw ModuleException("Invalid cooldown value, unknown config error"); } maxaccepts = new_maxaccepts; notify_cooldown = new_cooldown; |