aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/datastore/datastore_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/datastore/datastore_api.c b/src/datastore/datastore_api.c
index 36d1d98b7..4f406a2bc 100644
--- a/src/datastore/datastore_api.c
+++ b/src/datastore/datastore_api.c
@@ -1213,12 +1213,12 @@ process_result_message (void *cls, const struct GNUNET_MessageHeader *msg)
1213 LOG (GNUNET_ERROR_TYPE_DEBUG, 1213 LOG (GNUNET_ERROR_TYPE_DEBUG,
1214 "Received end of result set, new queue size is %u\n", h->queue_size); 1214 "Received end of result set, new queue size is %u\n", h->queue_size);
1215#endif 1215#endif
1216 if (rc.proc != NULL)
1217 rc.proc (rc.proc_cls, NULL, 0, NULL, 0, 0, 0, GNUNET_TIME_UNIT_ZERO_ABS,
1218 0);
1219 h->retry_time.rel_value = 0; 1216 h->retry_time.rel_value = 0;
1220 h->result_count = 0; 1217 h->result_count = 0;
1221 process_queue (h); 1218 process_queue (h);
1219 if (rc.proc != NULL)
1220 rc.proc (rc.proc_cls, NULL, 0, NULL, 0, 0, 0, GNUNET_TIME_UNIT_ZERO_ABS,
1221 0);
1222 return; 1222 return;
1223 } 1223 }
1224 qe = h->queue_head; 1224 qe = h->queue_head;