summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-16 22:13:46 +0000
committerFlorian Dold <florian.dold@gmail.com>2016-10-16 22:13:46 +0000
commit99cf32413601c3348f665c4132a6a096e00f3b54 (patch)
tree2c94997db6e937b57532a4724ed7999c6b272260
parentb368ebf988178ed83775a94b604885aa89e25406 (diff)
downloadgnunet-99cf32413601c3348f665c4132a6a096e00f3b54.tar.gz
gnunet-99cf32413601c3348f665c4132a6a096e00f3b54.zip
fix comment
-rw-r--r--src/include/gnunet_mq_lib.h2
-rw-r--r--src/util/mq.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gnunet_mq_lib.h b/src/include/gnunet_mq_lib.h
index 16f1f531a..6c193e54e 100644
--- a/src/include/gnunet_mq_lib.h
+++ b/src/include/gnunet_mq_lib.h
@@ -716,7 +716,7 @@ GNUNET_MQ_impl_send_continue (struct GNUNET_MQ_Handle *mq);
716 716
717/** 717/**
718 * Call the send notification for the current message, but do not 718 * Call the send notification for the current message, but do not
719 * try to send the message until #gnunet_mq_impl_send_continue 719 * try to send the next message until #gnunet_mq_impl_send_continue
720 * is called. 720 * is called.
721 * 721 *
722 * only useful for implementing message queues, results in undefined 722 * only useful for implementing message queues, results in undefined
diff --git a/src/util/mq.c b/src/util/mq.c
index 6d3517dae..0ada6e9b0 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -518,7 +518,7 @@ GNUNET_MQ_impl_send_continue (struct GNUNET_MQ_Handle *mq)
518 518
519/** 519/**
520 * Call the send notification for the current message, but do not 520 * Call the send notification for the current message, but do not
521 * try to send the message until #gnunet_mq_impl_send_continue 521 * try to send the next message until #gnunet_mq_impl_send_continue
522 * is called. 522 * is called.
523 * 523 *
524 * only useful for implementing message queues, results in undefined 524 * only useful for implementing message queues, results in undefined