aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-01-30 13:26:11 +0000
committerChristian Grothoff <christian@grothoff.org>2012-01-30 13:26:11 +0000
commitd6f6be87c98362faa95a84d27a65b79694369fee (patch)
treedb8750543f4ae73c89f7ffbca75a3d5d435f0fe1 /src/util
parent91b1aa807cc9cda1dc109bdc8760ff3a4540cab5 (diff)
downloadgnunet-d6f6be87c98362faa95a84d27a65b79694369fee.tar.gz
gnunet-d6f6be87c98362faa95a84d27a65b79694369fee.zip
-trying to fix double-start issue on sparc
Diffstat (limited to 'src/util')
-rw-r--r--src/util/configuration.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/configuration.c b/src/util/configuration.c
index 50f32e286..f24b2c2c6 100644
--- a/src/util/configuration.c
+++ b/src/util/configuration.c
@@ -407,7 +407,7 @@ GNUNET_CONFIGURATION_iterate_section_values (const struct
407 struct ConfigEntry *epos; 407 struct ConfigEntry *epos;
408 408
409 spos = cfg->sections; 409 spos = cfg->sections;
410 while ((spos != NULL) && (0 != strcmp (spos->name, section))) 410 while ((spos != NULL) && (0 != strcasecmp (spos->name, section)))
411 spos = spos->next; 411 spos = spos->next;
412 412
413 if (spos == NULL) 413 if (spos == NULL)
@@ -465,7 +465,7 @@ GNUNET_CONFIGURATION_remove_section (struct GNUNET_CONFIGURATION_Handle *cfg,
465 spos = cfg->sections; 465 spos = cfg->sections;
466 while (spos != NULL) 466 while (spos != NULL)
467 { 467 {
468 if (0 == strcmp (section, spos->name)) 468 if (0 == strcasecmp (section, spos->name))
469 { 469 {
470 if (prev == NULL) 470 if (prev == NULL)
471 cfg->sections = spos->next; 471 cfg->sections = spos->next;