diff options
-rw-r--r-- | Changes | 11 | ||||
-rw-r--r-- | src/servers.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 13 insertions, 6 deletions
@@ -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 -------------------- diff --git a/src/servers.c b/src/servers.c index 9ac0ed91d..dc87826ce 100644 --- a/src/servers.c +++ b/src/servers.c @@ -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; } diff --git a/version.log b/version.log index b9a4f0c30..f5ba825dd 100644 --- a/version.log +++ b/version.log @@ -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 |