aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_dccallow.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-03-17 06:07:41 +0000
committerGravatar Sadie Powell2021-03-17 06:07:41 +0000
commite2f8e75ab86c484e095ea5723f68a96698abbde2 (patch)
tree2a3e41f51536a8eabb1b6b3c2a5fb47bb1346fdb /src/modules/m_dccallow.cpp
parentPascalize Get in extension item classes. (diff)
Pascalize Set in extension item classes.
Diffstat (limited to 'src/modules/m_dccallow.cpp')
-rw-r--r--src/modules/m_dccallow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_dccallow.cpp b/src/modules/m_dccallow.cpp
index d7a2c67b2..566f7889e 100644
--- a/src/modules/m_dccallow.cpp
+++ b/src/modules/m_dccallow.cpp
@@ -155,7 +155,7 @@ class DCCAllowExt : public SimpleExtItem<dccallowlist>
}
// The value was well formed.
- set(user, list);
+ Set(user, list);
}
std::string ToInternal(const Extensible* container, void* item) const override
@@ -263,7 +263,7 @@ class CommandDccallow : public Command
if (!dl)
{
dl = new dccallowlist;
- ext.set(user, dl);
+ ext.Set(user, dl);
// add this user to the userlist
ul.push_back(user);
}