r2097@chromobil: stefan | 2008-02-26 17:12:30 +0100

Fix #516: RoundRobin in mod_proxy


git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2092 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
Stefan Bühler 2008-02-26 16:21:56 +00:00
parent 88750bb7be
commit c0db8ab168
1 changed files with 1 additions and 1 deletions

View File

@ -1205,7 +1205,7 @@ static handler_t mod_proxy_check_extension(server *srv, connection *con, void *p
}
/* didn't found a higher id, wrap to the start */
if (ndx != -1 && max_usage != INT_MAX) {
if (ndx == -1 && max_usage != INT_MAX) {
ndx = max_usage;
}