core/s2smanager.lua

changeset 2711
5d97fb043141
parent 2165
529af807ba1a
child 2712
9c579864b20a
--- a/core/s2smanager.lua	Wed Jan 20 02:44:38 2010 +0000
+++ b/core/s2smanager.lua	Thu Feb 25 17:52:33 2010 +0000
@@ -50,7 +50,9 @@
 
 module "s2smanager"
 
-local function compare_srv_priorities(a,b) return a.priority < b.priority or a.weight < b.weight; end
+function compare_srv_priorities(a,b)
+	return a.priority < b.priority or (a.priority == b.priority and a.weight > b.weight);
+end
 
 local function bounce_sendq(session)
 	local sendq = session.sendq;

mercurial