aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-16 22:16:12 +0000
committerFlorian Dold <florian.dold@gmail.com>2016-10-16 22:16:12 +0000
commit7ef7cbb7b12b1f78dd06c533d90f5c4a773df8f8 (patch)
tree6d3ecf67fc5dee933294b3f939789677146fef9a /src/util
parent49dea09600d1249a265cd6b6b654b3f926c7afbe (diff)
downloadgnunet-7ef7cbb7b12b1f78dd06c533d90f5c4a773df8f8.tar.gz
gnunet-7ef7cbb7b12b1f78dd06c533d90f5c4a773df8f8.zip
oops ... inverted logic
Diffstat (limited to 'src/util')
-rw-r--r--src/util/mq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index 312fb3ff0..4ba6c5ff8 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -613,7 +613,7 @@ const struct GNUNET_MessageHeader *
613GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq) 613GNUNET_MQ_impl_current (struct GNUNET_MQ_Handle *mq)
614{ 614{
615 GNUNET_assert (NULL != mq->current_envelope); 615 GNUNET_assert (NULL != mq->current_envelope);
616 GNUNET_assert (NULL == mq->current_envelope->mh); 616 GNUNET_assert (NULL != mq->current_envelope->mh);
617 return mq->current_envelope->mh; 617 return mq->current_envelope->mh;
618} 618}
619 619