summaryrefslogtreecommitdiff
path: root/modules/sasl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/sasl.cpp')
-rw-r--r--modules/sasl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/sasl.cpp b/modules/sasl.cpp
index 447662f34..815291166 100644
--- a/modules/sasl.cpp
+++ b/modules/sasl.cpp
@@ -93,7 +93,7 @@ public:
throw ModuleException("No CertFP");
}
- Session* CreateSession(const Anope::string &uid) override
+ Session *CreateSession(const Anope::string &uid) override
{
return new Session(this, uid);
}
@@ -206,7 +206,7 @@ public:
}
}
- Session* session = GetSession(m.source);
+ Session *session = GetSession(m.source);
if (m.type == "S")
{
@@ -267,7 +267,7 @@ public:
return agent;
}
- Session* GetSession(const Anope::string &uid) override
+ Session *GetSession(const Anope::string &uid) override
{
std::map<Anope::string, Session *>::iterator it = sessions.find(uid);
if (it != sessions.end())