aboutsummaryrefslogtreecommitdiff
path: root/src/nse
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-07-28 16:33:48 +0000
committerChristian Grothoff <christian@grothoff.org>2011-07-28 16:33:48 +0000
commit95bb20a634949a52cbd097ac929a390f150af413 (patch)
treea6d4f4968373632a06c736ca73d6c506a84acb28 /src/nse
parent1fecb906dd8a0d241a4fd02357e88cb2907ee8f4 (diff)
downloadgnunet-95bb20a634949a52cbd097ac929a390f150af413.tar.gz
gnunet-95bb20a634949a52cbd097ac929a390f150af413.zip
fix assertion:
Diffstat (limited to 'src/nse')
-rw-r--r--src/nse/gnunet-service-nse.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nse/gnunet-service-nse.c b/src/nse/gnunet-service-nse.c
index 0df6975f5..6a1e577fe 100644
--- a/src/nse/gnunet-service-nse.c
+++ b/src/nse/gnunet-service-nse.c
@@ -923,9 +923,8 @@ update_flood_times (void *cls,
923 { 923 {
924 /* still stuck in previous round, no point to update, check that 924 /* still stuck in previous round, no point to update, check that
925 we are active here though... */ 925 we are active here though... */
926#if DEBUG_NSE 926 GNUNET_break ( (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK) ||
927 GNUNET_break (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK); 927 (peer_entry->th != NULL) );
928#endif
929 return GNUNET_OK; 928 return GNUNET_OK;
930 } 929 }
931 if (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK) 930 if (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK)