This subtle pointer arithmetic thingy is (I'm very sure of it) the cause
[tinc] / src / connection.c
index a35d4f0..e4e8fad 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.
 
-    $Id: connection.c,v 1.1.2.34 2002/09/09 22:32:30 guus Exp $
+    $Id: connection.c,v 1.1.2.36 2003/06/25 20:55:05 guus Exp $
 */
 
 #include "config.h"
@@ -32,7 +32,6 @@
 
 #include "net.h"                               /* Don't ask. */
 #include "netutl.h"
-#include "config.h"
 #include "conf.h"
 #include <utils.h>
 #include "subnet.h"
@@ -45,7 +44,7 @@ connection_t *broadcast;
 
 int connection_compare(connection_t *a, connection_t *b)
 {
-       return a - b;
+       return (void *)a - (void *)b;
 }
 
 void init_connections(void)