gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet] branch master updated: -always return on null ego


From: gnunet
Subject: [gnunet] branch master updated: -always return on null ego
Date: Sat, 15 May 2021 20:12:02 +0200

This is an automated email from the git hooks/post-receive script.

martin-schanzenbach pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 706c38e6a -always return on null ego
     new 9af213e65 Merge branch 'master' of ssh://gnunet.org/gnunet
706c38e6a is described below

commit 706c38e6ad7ee354e83f7f08e3e0c9584ce15631
Author: Martin Schanzenbach <mschanzenbach@posteo.de>
AuthorDate: Sat May 15 20:09:27 2021 +0200

    -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;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]