use correct header size calculation in test
authorChristian Grothoff <christian@grothoff.org>
Mon, 23 Jan 2017 13:28:30 +0000 (14:28 +0100)
committerChristian Grothoff <christian@grothoff.org>
Mon, 23 Jan 2017 13:28:30 +0000 (14:28 +0100)
src/cadet/test_cadet_single.c

index 636def35d41ebd2acc8c032105fc96beaaf36c2b..d9aa1a21488b33bc44b337c18c282c593f0e62da 100644 (file)
@@ -234,7 +234,7 @@ do_send (void *cls, size_t size, void *buf)
     result = GNUNET_SYSERR;
     return 0;
   }
-  m->size = htons (sizeof (struct GNUNET_MessageHeader));
+  m->size = htons (sizeof (struct GNUNET_MessageHeader) + DATA_SIZE);
   m->type = htons (1);
   memset (&m[1], 0, DATA_SIZE);
   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader) + DATA_SIZE);