mirror of
https://github.com/anope/anope.git
synced 2026-06-30 02:56:38 +02:00
# BUILD : 1.7.13 (1003)
# BUGS : 467 # NOTES : Fixed server desc for several ircds git-svn-id: svn://svn.anope.org/anope/trunk@1003 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@728 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
b803c903b0
commit
2bd37f21b5
@@ -33,6 +33,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
|
||||
03/02 F Fixed missing TS6 functionality in channels.c. [#418]
|
||||
03/02 F Fixed possible overflow in process(). [#445]
|
||||
03/02 F Fixed memleak in do_cmode(). [#430]
|
||||
03/03 F Rage, Bahamut and Viagra will now use the correct server desc. [#467]
|
||||
|
||||
Provided by nenolod. <nenolod@nenolod.net> - 2006
|
||||
02/03 A Support for Charybdis IRCd. [ #00]
|
||||
|
||||
@@ -875,7 +875,7 @@ void bahamut_cmd_pass(char *pass)
|
||||
/* SERVER */
|
||||
void bahamut_cmd_server(char *servname, int hop, char *descript)
|
||||
{
|
||||
send_cmd(NULL, "SERVER %s %d :%s", servname, hop, ServerDesc);
|
||||
send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript);
|
||||
}
|
||||
|
||||
/* CAPAB */
|
||||
|
||||
@@ -740,7 +740,7 @@ void rageircd_cmd_capab()
|
||||
|
||||
void rageircd_cmd_server(char *servname, int hop, char *descript)
|
||||
{
|
||||
send_cmd(NULL, "SERVER %s %d :%s", servname, hop, ServerDesc);
|
||||
send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript);
|
||||
}
|
||||
|
||||
/* PASS */
|
||||
|
||||
@@ -951,7 +951,7 @@ void viagra_cmd_pass(char *pass)
|
||||
/* SERVER */
|
||||
void viagra_cmd_server(char *servname, int hop, char *descript)
|
||||
{
|
||||
send_cmd(NULL, "SERVER %s %d :%s", servname, hop, ServerDesc);
|
||||
send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript);
|
||||
}
|
||||
|
||||
void viagra_cmd_burst()
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="13"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="1002"
|
||||
VERSION_BUILD="1003"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.13 (1003)
|
||||
# BUGS : 467
|
||||
# NOTES : Fixed server desc for several ircds
|
||||
#
|
||||
# BUILD : 1.7.13 (1002)
|
||||
# BUGS : 440
|
||||
# NOTES : Made bs_init and hostserv_init useless when BotServ/HostServ are disabled; fixed compile errors/warnings introduced by Certus
|
||||
|
||||
Reference in New Issue
Block a user