mirror of
https://github.com/anope/anope.git
synced 2026-07-08 02:03:13 +02:00
BUILD : 1.7.9 (779) BUGS : none NOTES : TS6 nick tracking fix by static
git-svn-id: svn://svn.anope.org/anope/trunk@779 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@539 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
ac4c6f37b9
commit
1fc19209fd
+4
-1
@@ -647,7 +647,10 @@ User *do_nick(const char *source, char *nick, char *username, char *host,
|
||||
|
||||
} else {
|
||||
/* An old user changing nicks. */
|
||||
user = finduser(source);
|
||||
if (UseTS6)
|
||||
user = find_byuid(source);
|
||||
else
|
||||
user = finduser(source);
|
||||
|
||||
if (!user) {
|
||||
alog("user: NICK from nonexistent nick %s", source);
|
||||
|
||||
Reference in New Issue
Block a user