From: Bart Polot Date: Wed, 8 Feb 2017 16:23:09 +0000 (+0100) Subject: - fix assertion condition X-Git-Tag: taler-0.2.1~195 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ff9d5ad1638c7628ffb07f93da5533bff6a383c7;p=oweals%2Fgnunet.git - fix assertion condition --- diff --git a/src/cadet/cadet_api.c b/src/cadet/cadet_api.c index 15a5a3856..503b1249a 100644 --- a/src/cadet/cadet_api.c +++ b/src/cadet/cadet_api.c @@ -734,7 +734,7 @@ cadet_mq_send_impl (struct GNUNET_MQ_Handle *mq, else { /* Service has NOT allowed this message, queue it and wait for an ACK */ - GNUNET_assert (NULL != ch->pending_env); + GNUNET_assert (NULL == ch->pending_env); ch->pending_env = env; } }