From 706c38e6ad7ee354e83f7f08e3e0c9584ce15631 Mon Sep 17 00:00:00 2001 From: Martin Schanzenbach Date: Sat, 15 May 2021 20:09:27 +0200 Subject: -always return on null ego --- src/reclaim/plugin_rest_reclaim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reclaim/plugin_rest_reclaim.c b/src/reclaim/plugin_rest_reclaim.c index 80d6ca976..a2f8d96b2 100644 --- a/src/reclaim/plugin_rest_reclaim.c +++ b/src/reclaim/plugin_rest_reclaim.c @@ -1364,7 +1364,7 @@ list_ego (void *cls, struct EgoEntry *ego_entry; struct GNUNET_IDENTITY_PublicKey pk; - if ((NULL == ego) && (ID_REST_STATE_INIT == state)) + if (NULL == ego) { state = ID_REST_STATE_POST_INIT; return; -- cgit v1.2.3