diff options
-rw-r--r-- | src/modules/m_securelist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_securelist.cpp b/src/modules/m_securelist.cpp index 8885068ba..32017d591 100644 --- a/src/modules/m_securelist.cpp +++ b/src/modules/m_securelist.cpp @@ -67,8 +67,8 @@ class ModuleSecureList : public Module /* Some crap clients (read: mIRC, various java chat applets) muck up if they don't * receive these numerics whenever they send LIST, so give them an empty LIST to mull over. */ - WriteServ(u->fd,"321 %s Channel :Users Name",user->nick); - WriteServ(u->fd,"323 %s :End of channel list.",user->nick); + WriteServ(user->fd,"321 %s Channel :Users Name",user->nick); + WriteServ(user->fd,"323 %s :End of channel list.",user->nick); return 1; } return 0; |