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: 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 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') 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); -- cgit