aboutsummaryrefslogtreecommitdiff
path: root/src/util/mq.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-08-01 22:56:32 +0000
committerChristian Grothoff <christian@grothoff.org>2016-08-01 22:56:32 +0000
commit22be4f71e12c7f2eacafe03d94d4d1c86bc72f0a (patch)
tree9bbaf4db61f8a862476ccb79a88ad6dfed6ef91e /src/util/mq.c
parent3d3cedf2e2c41883771cc2170b761840ac26b869 (diff)
downloadgnunet-22be4f71e12c7f2eacafe03d94d4d1c86bc72f0a.tar.gz
gnunet-22be4f71e12c7f2eacafe03d94d4d1c86bc72f0a.zip
-adapting xdht and wdht to new core MQ API
Diffstat (limited to 'src/util/mq.c')
-rw-r--r--src/util/mq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index a4ea5e39d..bea5eb304 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -632,8 +632,8 @@ GNUNET_MQ_msg_nested_mh_ (struct GNUNET_MessageHeader **mhp,
632 632
633 mqm = GNUNET_MQ_msg_ (mhp, size, type); 633 mqm = GNUNET_MQ_msg_ (mhp, size, type);
634 GNUNET_memcpy ((char *) mqm->mh + base_size, 634 GNUNET_memcpy ((char *) mqm->mh + base_size,
635 nested_mh, 635 nested_mh,
636 ntohs (nested_mh->size)); 636 ntohs (nested_mh->size));
637 637
638 return mqm; 638 return mqm;
639} 639}