aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ident.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-09-29 12:01:29 +0100
committerGravatar Sadie Powell2022-09-29 12:36:01 +0100
commit89537ed2ab22fcedb25e0378bd2c18e392911c0c (patch)
tree4cdea30cb16c0a044d80ba4bab8ef9a645c90824 /src/modules/m_ident.cpp
parentUse NOMINMAX on Windows and undefine error in the log header. (diff)
Fix various cases of the &* being next to the name instead of type.
Diffstat (limited to 'src/modules/m_ident.cpp')
-rw-r--r--src/modules/m_ident.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp
index b923e6371..36f9ceed0 100644
--- a/src/modules/m_ident.cpp
+++ b/src/modules/m_ident.cpp
@@ -104,7 +104,7 @@ class IdentRequestSocket final
: public EventHandler
{
public:
- LocalUser *user; /* User we are attached to */
+ LocalUser* user; /* User we are attached to */
std::string result; /* Holds the ident string if done */
time_t age;
bool done; /* True if lookup is finished */
@@ -354,7 +354,7 @@ public:
* creating a Timer object and especially better than creating a
* Timer per ident lookup!
*/
- ModResult OnCheckReady(LocalUser *user) override
+ ModResult OnCheckReady(LocalUser* user) override
{
/* Does user have an ident socket attached at all? */
IdentRequestSocket* isock = socket.Get(user);