edge_weight_compare() shouldn't rely on edge_compare().
authorGuus Sliepen <guus@tinc-vpn.org>
Fri, 6 Sep 2002 12:19:16 +0000 (12:19 +0000)
committerGuus Sliepen <guus@tinc-vpn.org>
Fri, 6 Sep 2002 12:19:16 +0000 (12:19 +0000)
src/edge.c

index 4a000e8..3ac0b1b 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: edge.c,v 1.1.2.13 2002/09/06 10:23:52 guus Exp $
+    $Id: edge.c,v 1.1.2.14 2002/09/06 12:19:16 guus Exp $
 */
 
 #include "config.h"
 */
 
 #include "config.h"
@@ -56,8 +56,13 @@ int edge_weight_compare(edge_t *a, edge_t *b)
 
   if(result)
     return result;
 
   if(result)
     return result;
-  else
-    return edge_compare(a, b);
+
+  result = strcmp(a->from->name, b->from->name);
+
+  if(result)
+    return result;
+
+  return strcmp(a->to->name, b->to->name);
 }
 
 void init_edges(void)
 }
 
 void init_edges(void)