mirror of
https://github.com/anope/anope.git
synced 2026-06-28 11:46:38 +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);
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="9"
|
||||
VERSION_BUILD="778"
|
||||
VERSION_BUILD="779"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.9 (779)
|
||||
# BUGS : none
|
||||
# NOTES : TS6 nick tracking fix by static
|
||||
#
|
||||
# BUILD : 1.7.9 (778)
|
||||
# BUGS : N/A
|
||||
# NOTES : inspircd fixs, debug output fix
|
||||
|
||||
Reference in New Issue
Block a user