aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/reclaim/gnunet-reclaim.c2
1 files changed, 1 insertions, 1 deletions
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,
332 attrs_tmp = GNUNET_strdup (issue_attrs); 332 attrs_tmp = GNUNET_strdup (issue_attrs);
333 attr_str = strtok (attrs_tmp, ","); 333 attr_str = strtok (attrs_tmp, ",");
334 while (NULL != attr_str) { 334 while (NULL != attr_str) {
335 if (0 != strcmp (attr_str, attr->name)) { 335 if (0 != strcasecmp (attr_str, attr->name)) {
336 attr_str = strtok (NULL, ","); 336 attr_str = strtok (NULL, ",");
337 continue; 337 continue;
338 } 338 }