fix comments, fix test
authorChristian Grothoff <christian@grothoff.org>
Fri, 27 Jan 2017 21:09:05 +0000 (22:09 +0100)
committerChristian Grothoff <christian@grothoff.org>
Fri, 27 Jan 2017 21:09:05 +0000 (22:09 +0100)
src/cadet/gnunet-service-cadet-new_channel.c
src/util/test_container_dll.c

index ef1858c4b4fdb7eda4423007713c8e548e7787ef..3bcf5ad0b2a8a23e45c5bd893c6fd6283477b4c3 100644 (file)
@@ -1084,8 +1084,8 @@ GCCH_handle_channel_open_ack (struct CadetChannel *ch)
  * Test if element @a e1 comes before element @a e2.
  *
  * @param cls closure, to a flag where we indicate duplicate packets
- * @param e1 an element of to sort
- * @param e2 another element to sort
+ * @param m1 a message of to sort
+ * @param m2 another message to sort
  * @return #GNUNET_YES if @e1 < @e2, otherwise #GNUNET_NO
  */
 static int
@@ -1108,7 +1108,7 @@ is_before (void *cls,
   }
   else
   {
-    /* result is small, thus v2 > v1, thus e1 < e2 */
+    /* result is small, thus v2 > v1, thus m1 < m2 */
     return GNUNET_YES;
   }
 }
index a1954e8fa5e148863b021c918739acdb9a5fc93c..4d2830807fe1abbf79112f2fb3d66b95f1caba89 100644 (file)
@@ -72,7 +72,7 @@ int
 main (int argc, char **argv)
 {
   unsigned int values[] = {
-    4, 5, 8, 6, 9, 3, 7, 2, 6, 1, 0
+    4, 5, 8, 6, 9, 3, 7, 2, 1, 0
   };
   struct Element *head = NULL;
   struct Element *tail = NULL;