summaryrefslogtreecommitdiff
path: root/src/cmd_nick.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-11 12:26:07 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-11 12:26:07 +0000
commite84bf9f3ec5a60078c32b272d3d7885c0708c544 (patch)
tree99fc8f4b4d7bede49e91f27abcdee6fb8c4fe6f4 /src/cmd_nick.cpp
parentd17465716790010b6e3221f9ce49272110276ccf (diff)
Change to using Instance->Log (InspIRCd::Log) rather than log() macro
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4880 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_nick.cpp')
-rw-r--r--src/cmd_nick.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cmd_nick.cpp b/src/cmd_nick.cpp
index 2ed79b434..d96298ca2 100644
--- a/src/cmd_nick.cpp
+++ b/src/cmd_nick.cpp
@@ -35,27 +35,27 @@ void cmd_nick::Handle (const char** parameters, int pcnt, userrec *user)
if (pcnt < 1)
{
- log(DEBUG,"not enough params for handle_nick");
+ ServerInstance->Log(DEBUG,"not enough params for handle_nick");
return;
}
if (!parameters[0])
{
- log(DEBUG,"invalid parameter passed to handle_nick");
+ ServerInstance->Log(DEBUG,"invalid parameter passed to handle_nick");
return;
}
if (!parameters[0][0])
{
- log(DEBUG,"zero length new nick passed to handle_nick");
+ ServerInstance->Log(DEBUG,"zero length new nick passed to handle_nick");
return;
}
if (!user)
{
- log(DEBUG,"invalid user passed to handle_nick");
+ ServerInstance->Log(DEBUG,"invalid user passed to handle_nick");
return;
}
if (!user->nick)
{
- log(DEBUG,"invalid old nick passed to handle_nick");
+ ServerInstance->Log(DEBUG,"invalid old nick passed to handle_nick");
return;
}
if (irc::string(user->nick) == irc::string(parameters[0]))
@@ -67,7 +67,7 @@ void cmd_nick::Handle (const char** parameters, int pcnt, userrec *user)
* able to do silly things like this even though the RFC says
* the nick AAA is the same as the nick aaa.
*/
- log(DEBUG,"old nick is new nick, not updating hash (case change only)");
+ ServerInstance->Log(DEBUG,"old nick is new nick, not updating hash (case change only)");
strlcpy(oldnick, user->nick, NICKMAX - 1);
int MOD_RESULT = 0;
FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(user,parameters[0]));
@@ -127,7 +127,7 @@ void cmd_nick::Handle (const char** parameters, int pcnt, userrec *user)
strlcpy(user->nick, parameters[0], NICKMAX - 1);
- log(DEBUG,"new nick set: %s",user->nick);
+ ServerInstance->Log(DEBUG,"new nick set: %s",user->nick);
if (user->registered < REG_NICKUSER)
{
@@ -136,7 +136,7 @@ void cmd_nick::Handle (const char** parameters, int pcnt, userrec *user)
// and unless we're lucky we'll get a duff one later on.
//user->dns_done = (!lookup_dns(user->nick));
//if (user->dns_done)
- // log(DEBUG,"Aborting dns lookup of %s because dns server experienced a failure.",user->nick);
+ // ServerInstance->Log(DEBUG,"Aborting dns lookup of %s because dns server experienced a failure.",user->nick);
if (ServerInstance->Config->NoUserDns)
{
@@ -146,7 +146,7 @@ void cmd_nick::Handle (const char** parameters, int pcnt, userrec *user)
{
user->StartDNSLookup();
if (user->dns_done)
- log(DEBUG,"Aborting dns lookup of %s because dns server experienced a failure.",user->nick);
+ ServerInstance->Log(DEBUG,"Aborting dns lookup of %s because dns server experienced a failure.",user->nick);
}
}
if (user->registered == REG_NICKUSER)