aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-05-02 02:00:23 +0200
committerChristian Grothoff <christian@grothoff.org>2018-05-02 02:00:23 +0200
commit2e86e317379837414b76460295e284b54d2bf775 (patch)
treebca5816737ccbc92df2147e21e67c1b0962fe234
parent6a86935d5e69874324a158fa6d418b88df8c575d (diff)
deq from correct queue
-rw-r--r--src/zonemaster/gnunet-service-zonemaster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zonemaster/gnunet-service-zonemaster.c b/src/zonemaster/gnunet-service-zonemaster.c
index 322a1093b6..7129cf44f2 100644
--- a/src/zonemaster/gnunet-service-zonemaster.c
+++ b/src/zonemaster/gnunet-service-zonemaster.c
@@ -946,7 +946,7 @@ handle_monitor_event (void *cls,
ma_queue_length++;
if (ma_queue_length > DHT_QUEUE_LIMIT)
{
- ma = it_head;
+ ma = ma_head;
GNUNET_CONTAINER_DLL_remove (ma_head,
ma_tail,
ma);