1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 23:43:14 +02:00

Fixed two log message typos, patch from Lethality

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2904 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-04-22 00:32:18 +00:00
parent 508996215f
commit 752e87a9f0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1021,7 +1021,7 @@ int anope_event_error(const char *source, int ac, const char **av)
{
Alog(LOG_DEBUG) << av[0];
if(strstr(av[0],"No matching link configuration")!=0)
Alog() << "Error: Your IRCD's link block may not setup correctly, please check unrealircd.conf";
Alog() << "Error: Your IRCD's link block may not be setup correctly, please check unrealircd.conf";
}
return MOD_CONT;
+1 -1
View File
@@ -936,7 +936,7 @@ User *do_nick(const char *source, const char *nick, const char *username, const
ntmp->last_seen = time(NULL);
user->UpdateHost();
ircdproto->SetAutoIdentificationToken(user);
Alog() << Config.s_NickServ << ": " << user->GetMask() << "automatically identified for group " << user->Account()->display;
Alog() << Config.s_NickServ << ": " << user->GetMask() << " automatically identified for group " << user->Account()->display;
}
/* Bahamut sets -r on every nick changes, so we must test it even if nc_changed == 0 */