From 1fc19209fd0a30260fa089a69f14bbdf381eedbd Mon Sep 17 00:00:00 2001 From: "dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Fri, 6 May 2005 01:37:08 +0000 Subject: [PATCH] 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 --- src/users.c | 5 ++++- version.log | 6 +++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/users.c b/src/users.c index 7bf4fb35d..229cebe15 100644 --- a/src/users.c +++ b/src/users.c @@ -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); diff --git a/version.log b/version.log index 9633deda4..ee20ca567 100644 --- a/version.log +++ b/version.log @@ -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