diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-08 15:07:01 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-08 15:07:01 +0000 |
commit | 0ec837922c83c622029db57904b4053b0e13cfaf (patch) | |
tree | fc3e2a84f47e5de8a03bf5146ab47be9f505f0df /src/users.c | |
parent | 44c05660f42cb1b1868c31c37109a4c0fe6b8639 (diff) |
BUILD : 1.7.8 (611) BUGS : none NOTES : alogs display the real host instead of vhost.
git-svn-id: svn://svn.anope.org/anope/trunk@611 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@459 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/users.c')
-rw-r--r-- | src/users.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/users.c b/src/users.c index 9fca93865..8078acc20 100644 --- a/src/users.c +++ b/src/users.c @@ -118,8 +118,7 @@ void update_host(User * user) } if (debug) - alog("debug: %s changes its host to %s", user->nick, - common_get_vhost(user)); + alog("debug: %s changes its host to %s", user->nick, user->host); } @@ -734,7 +733,7 @@ User *do_nick(const char *source, char *nick, char *username, char *host, alog("%s: %s!%s@%s automatically identified for nick %s", s_NickServ, user->nick, user->username, - common_get_vhost(user), user->nick); + user->host, user->nick); } } |