aboutsummaryrefslogtreecommitdiff
path: root/src/set
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-12-05 12:21:28 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-12-05 12:21:28 +0000
commit3c051e4385029ce7d0147dcc47b8e54e87fe8265 (patch)
tree15f6af9394c7298f1973029a086cf302bd430ba3 /src/set
parentd8c56c79613f603765984a9a8fc2ed9036bdd2e6 (diff)
downloadgnunet-3c051e4385029ce7d0147dcc47b8e54e87fe8265.tar.gz
gnunet-3c051e4385029ce7d0147dcc47b8e54e87fe8265.zip
fix for mantis #0003156
Diffstat (limited to 'src/set')
-rw-r--r--src/set/gnunet-service-set.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/set/gnunet-service-set.c b/src/set/gnunet-service-set.c
index 77e385cb3..749154010 100644
--- a/src/set/gnunet-service-set.c
+++ b/src/set/gnunet-service-set.c
@@ -199,7 +199,7 @@ get_incoming (uint32_t id)
199{ 199{
200 struct Operation *op; 200 struct Operation *op;
201 201
202 for (op = incoming_head; NULL != op; op = op) 202 for (op = incoming_head; NULL != op; op = op->next)
203 if (op->state->suggest_id == id) 203 if (op->state->suggest_id == id)
204 return op; 204 return op;
205 return NULL; 205 return NULL;