summaryrefslogtreecommitdiff
path: root/src/cmd_privmsg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd_privmsg.cpp')
-rw-r--r--src/cmd_privmsg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmd_privmsg.cpp b/src/cmd_privmsg.cpp
index 2c54a770a..fddf810d2 100644
--- a/src/cmd_privmsg.cpp
+++ b/src/cmd_privmsg.cpp
@@ -20,10 +20,10 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance)
return new cmd_privmsg(Instance);
}
-CmdResult cmd_privmsg::Handle (const char** parameters, int pcnt, userrec *user)
+CmdResult cmd_privmsg::Handle (const char** parameters, int pcnt, User *user)
{
- userrec *dest;
- chanrec *chan;
+ User *dest;
+ Channel *chan;
CUList except_list;
user->idle_lastmsg = ServerInstance->Time();