From 3c4c38d3b0b058d7037321af148c5ad2fedb3a0f Mon Sep 17 00:00:00 2001 From: "Schanzenbach, Martin" Date: Thu, 9 Aug 2018 14:22:40 +0200 Subject: 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; } -- cgit v1.2.3