diff options
| author | 2015-01-18 10:40:33 +0100 | |
|---|---|---|
| committer | 2015-01-18 10:40:33 +0100 | |
| commit | 4fc2f7199e964ba5112ecdb2613c6fd5c2eee638 (patch) | |
| tree | bf2469f00fd4dfeaa07c0ab431a9663952cf17b7 /src/modules/m_sasl.cpp | |
| parent | Verify that the chan in chanlist is in fact the same object as us in Channel:... (diff) | |
Specify which Extensible subclass an ExtensionItem is valid for
Diffstat (limited to 'src/modules/m_sasl.cpp')
| -rw-r--r-- | src/modules/m_sasl.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modules/m_sasl.cpp b/src/modules/m_sasl.cpp index 074362651..0a2c840bd 100644 --- a/src/modules/m_sasl.cpp +++ b/src/modules/m_sasl.cpp @@ -249,7 +249,10 @@ class ModuleSASL : public Module public: ModuleSASL() - : authExt("sasl_auth", this), cap(this, "sasl"), auth(this, authExt, cap), sasl(this, authExt) + : authExt("sasl_auth", ExtensionItem::EXT_USER, this) + , cap(this, "sasl") + , auth(this, authExt, cap) + , sasl(this, authExt) { } |
