aboutsummaryrefslogtreecommitdiff
path: root/src/reclaim
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2020-12-11 21:03:08 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2020-12-11 21:03:08 +0900
commitf6d7bdb03778a9feb3a9c53e67048d3aee9c7d48 (patch)
treead44dd4b1c769c22eae43613609d50030006e734 /src/reclaim
parent89fa3061a8497d006ebbfba2c038091754023b8f (diff)
downloadgnunet-f6d7bdb03778a9feb3a9c53e67048d3aee9c7d48.tar.gz
gnunet-f6d7bdb03778a9feb3a9c53e67048d3aee9c7d48.zip
-minor fix
Diffstat (limited to 'src/reclaim')
-rw-r--r--src/reclaim/plugin_rest_openid_connect.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/reclaim/plugin_rest_openid_connect.c b/src/reclaim/plugin_rest_openid_connect.c
index 921132d44..698dbfe18 100644
--- a/src/reclaim/plugin_rest_openid_connect.c
+++ b/src/reclaim/plugin_rest_openid_connect.c
@@ -2465,12 +2465,11 @@ list_ego (void *cls,
2465 struct EgoEntry *ego_entry; 2465 struct EgoEntry *ego_entry;
2466 struct GNUNET_IDENTITY_PublicKey pk; 2466 struct GNUNET_IDENTITY_PublicKey pk;
2467 2467
2468 if ((NULL == ego) && (ID_REST_STATE_INIT == state)) 2468 if (NULL == ego)
2469 { 2469 {
2470 state = ID_REST_STATE_POST_INIT; 2470 state = ID_REST_STATE_POST_INIT;
2471 return; 2471 return;
2472 } 2472 }
2473 GNUNET_assert (NULL != ego);
2474 if (ID_REST_STATE_INIT == state) 2473 if (ID_REST_STATE_INIT == state)
2475 2474
2476 { 2475 {