aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-08-09 14:22:40 +0200
committerSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-08-09 14:22:40 +0200
commit3c4c38d3b0b058d7037321af148c5ad2fedb3a0f (patch)
treea9c34d0113fcd6915b56df077e1f36a6401fc3d2
parent9c164a60e4e3d6fadfd85cdd8d3def851c37d0de (diff)
downloadgnunet-3c4c38d3b0b058d7037321af148c5ad2fedb3a0f.tar.gz
gnunet-3c4c38d3b0b058d7037321af148c5ad2fedb3a0f.zip
issue case insensitivity
-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 }