gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet] 01/02: RECLAIM: Fix bug that multiple attributes with the same


From: gnunet
Subject: [gnunet] 01/02: RECLAIM: Fix bug that multiple attributes with the same name are added in CLI
Date: Wed, 24 Nov 2021 18:33:29 +0100

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

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

commit 5cb62b557507808d897b17cbf8495ed3efe132c0
Author: Nico Thomas <nico.thomas@tum.de>
AuthorDate: Tue Nov 23 12:31:18 2021 +0100

    RECLAIM: Fix bug that multiple attributes with the same name are added in 
CLI
---
 src/reclaim/gnunet-reclaim.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/reclaim/gnunet-reclaim.c b/src/reclaim/gnunet-reclaim.c
index cefb66b8f..da5f90409 100644
--- a/src/reclaim/gnunet-reclaim.c
+++ b/src/reclaim/gnunet-reclaim.c
@@ -521,7 +521,7 @@ iter_cb (void *cls,
   char *id;
   const char *attr_type;
 
-  if ((NULL != attr_name) && (NULL != claim))
+  if ((NULL != attr_name) && (NULL == claim))
   {
     if (0 == strcasecmp (attr_name, attr->name))
     {
@@ -530,6 +530,7 @@ iter_cb (void *cls,
                                             attr->type,
                                             attr->data,
                                             attr->data_size);
+      claim->id = attr->id;
     }
   }
   else if (issue_attrs)
@@ -830,7 +831,7 @@ main (int argc, char *const argv[])
     GNUNET_GETOPT_option_string ('a',
                                  "add",
                                  "NAME",
-                                 gettext_noop ("Add an attribute NAME"),
+                                 gettext_noop ("Add or update an attribute 
NAME"),
                                  &attr_name),
     GNUNET_GETOPT_option_string ('d',
                                  "delete",

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