gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] branch master updated: issue case insensitivity


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: issue case insensitivity
Date: Thu, 09 Aug 2018 14:22:42 +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 3c4c38d3b issue case insensitivity
3c4c38d3b is described below

commit 3c4c38d3b0b058d7037321af148c5ad2fedb3a0f
Author: Schanzenbach, Martin <address@hidden>
AuthorDate: Thu Aug 9 14:22:40 2018 +0200

    issue case insensitivity
---
 src/reclaim/gnunet-reclaim.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/reclaim/gnunet-reclaim.c b/src/reclaim/gnunet-reclaim.c
index ecc81fb8e..f56425b17 100644
--- a/src/reclaim/gnunet-reclaim.c
+++ b/src/reclaim/gnunet-reclaim.c
@@ -332,7 +332,7 @@ iter_cb (void *cls,
     attrs_tmp = GNUNET_strdup (issue_attrs);
     attr_str = strtok (attrs_tmp, ",");
     while (NULL != attr_str) {
-      if (0 != strcmp (attr_str, attr->name)) {
+      if (0 != strcasecmp (attr_str, attr->name)) {
         attr_str = strtok (NULL, ",");
         continue;
       }

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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