summaryrefslogtreecommitdiff
path: root/src/messages.c
diff options
context:
space:
mode:
authorgeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2005-02-22 15:05:31 +0000
committergeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2005-02-22 15:05:31 +0000
commit593bfaea76d034323de14bcc3c7f903c84527db6 (patch)
tree3d2c896a6b025077b6a6d9389c9aae8adf30c844 /src/messages.c
parente9f57f1f42f2ad5c2dd1a3a37126d4ddd5121a4b (diff)
BUILD : 1.7.8 (580) BUGS : 301 302 NOTES : Fixed (1) uninitialized var in nickserv do_drop (2) remote whois returning incorrect numeric (3) some operserv commands using notice() instead of notice_user()
git-svn-id: svn://svn.anope.org/anope/trunk@580 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@430 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/messages.c')
-rw-r--r--src/messages.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messages.c b/src/messages.c
index 3d79ad2b2..e6ad168f7 100644
--- a/src/messages.c
+++ b/src/messages.c
@@ -363,7 +363,7 @@ int m_whois(char *source, char *who)
}
anope_cmd_311("%s %s %s %s * :%s", source, who,
ServiceUser, ServiceHost, clientdesc);
- anope_cmd_219(source, who);
+ anope_cmd_312("%s %s %s :%s", source, who, ServerName, ServerDesc);
anope_cmd_317("%s %s %ld %ld :seconds idle, signon time", source,
who, time(NULL) - start_time, start_time);
anope_cmd_318(source, who);