diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-05-06 01:37:08 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-05-06 01:37:08 +0000 |
commit | 1fc19209fd0a30260fa089a69f14bbdf381eedbd (patch) | |
tree | 9cbaa694883cfe1886e35ed85f65dd8d389479d2 | |
parent | ac4c6f37b92f106e3b79cd3a9b6d4589392fbd77 (diff) |
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
-rw-r--r-- | src/users.c | 5 | ||||
-rw-r--r-- | 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 |