1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 16:43:15 +02:00

BUILD : 1.7.6 (495) BUGS : N/A NOTES : Moved global regarding the deletion of non-existing session toinside the if(debug) as anope will call that function when users ping out etc

git-svn-id: svn://svn.anope.org/anope/trunk@495 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@349 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-12-21 10:14:38 +00:00
parent 3668ba1543
commit fbdf252876
3 changed files with 11 additions and 5 deletions
+2 -1
View File
@@ -13,10 +13,11 @@ Provided by Anope Dev. <dev@anope.org> - 2004
11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00]
11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00]
11/18 A NSAddAccessOnReg to control access list on registration. [ #00]
12/21 F Moved global about del of non-existant session inside debug() if [ #00]
12/19 F Fixed LogUser messages where the nickip is 0. [#253]
12/19 F Segfault if USERDB enabled and tables don't exist. [#255]
12/18 F Now only builds the ircd you selected. [ #00]
12/17 F In some cases READONLY was not respected, and data was saved. [#244]
12/17 F In some cases READONLY was not respected, and data was saved. [#244]
12/17 F Corrected a few mistakes in example.conf. [#251]
12/17 F Wrong column type in tables.sql for nick alias status fiag. [#248]
12/17 F listchans and listnicks work under Cygwin. [#247]
+3 -3
View File
@@ -286,10 +286,10 @@ void del_session(const char *host)
session = findsession(host);
if (!session) {
anope_cmd_global(s_OperServ,
"WARNING: Tried to delete non-existant session: \2%s",
host);
if (debug) {
anope_cmd_global(s_OperServ,
"WARNING: Tried to delete non-existant session: \2%s",
host);
alog("session: Tried to delete non-existant session: %s",
host);
}
+6 -1
View File
@@ -8,10 +8,15 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="6"
VERSION_BUILD="494"
VERSION_BUILD="495"
# $Log$
#
# BUILD : 1.7.6 (495)
# BUGS : N/A
# NOTES : Moved global regarding the deletion of non-existing session toinside the if(debug) as anope will call that function when users ping out etc
#
#
# BUILD : 1.7.6 (494)
# BUGS : N/A
# NOTES : Added support for plexus IRCD - provided by ThaPrince