-only trigger check config if we actually need it
[oweals/gnunet.git] / src / hello / address.c
index 2d3a5912186e3cc4b7281027078fd1dc7dffed2d..5d26b11099155212ead8a23f8448b77061e681d9 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     Copyright (C) 2009 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2009 GNUnet e.V.
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -143,7 +143,7 @@ GNUNET_HELLO_address_cmp (const struct GNUNET_HELLO_Address *a1,
   if (0 != ret)
     return ret;
   if (a1->local_info != a2->local_info)
-    return (((int) a1->local_info) - ((int) a2->local_info) < 0) -1 : 1;
+    return (((int) a1->local_info) < ((int) a2->local_info)) ? -1 : 1;
   if (a1->address_length < a2->address_length)
     return -1;
   if (a1->address_length > a2->address_length)