mirror of
https://github.com/anope/anope.git
synced 2026-06-27 17:46:39 +02:00
BUILD : 1.7.21 (1351) BUGS : 831 NOTES : Fixed a bug in next_server() which skipped over all servers right away when passing -1 as param
git-svn-id: svn://svn.anope.org/anope/trunk@1351 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1066 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
dfec1723a8
commit
b5bf30483b
@@ -1,9 +1,12 @@
|
||||
Anope Version S V N
|
||||
--------------------
|
||||
01/15 F BOT_NOT_ASSIGNED language string error [#828]
|
||||
01/15 F listchans now shows if a channel is suspended [#825]
|
||||
01/15 F listnicks now shows if a nickname is suspended [#825]
|
||||
01/15 F Re-assigned access to OS CHANLIST to Services Opers [#827]
|
||||
01/15 F BOT_NOT_ASSIGNED language string error. [#828]
|
||||
01/15 F listchans now shows if a channel is suspended. [#825]
|
||||
01/15 F listnicks now shows if a nickname is suspended. [#825]
|
||||
01/15 F Re-assigned access to OS CHANLIST to Services Opers. [#827]
|
||||
|
||||
Provided by Jan Milants <jan_renee@msn.com> - 2008
|
||||
01/16 F Server traversion with next_server() failed to list all servers. [#831]
|
||||
|
||||
Anope Version 1.7.21
|
||||
--------------------
|
||||
|
||||
+1
-1
@@ -98,7 +98,7 @@ Server *next_server(int flags)
|
||||
}
|
||||
} while (server_cur);
|
||||
}
|
||||
} while (server_cur && ((flags > -1) || (server_cur->flags != flags)));
|
||||
} while (server_cur && ((flags > -1) && (server_cur->flags != flags)));
|
||||
|
||||
return server_cur;
|
||||
}
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="21"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="1350"
|
||||
VERSION_BUILD="1351"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.21 (1351)
|
||||
# BUGS : 831
|
||||
# NOTES : Fixed a bug in next_server() which skipped over all servers right away when passing -1 as param
|
||||
#
|
||||
# BUILD : 1.7.21 (1350)
|
||||
# BUGS : 828
|
||||
# NOTES : Forgot to update the other language files
|
||||
|
||||
Reference in New Issue
Block a user