aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-09-08 11:59:26 +0200
committerChristian Grothoff <christian@grothoff.org>2023-09-08 11:59:26 +0200
commit5cd275c67f80866d3886520598c675d7d0e8c5de (patch)
tree55aec9b673eca9f310e49d5a9a8c62a6184f73bc
parentc6ca29f769105725221819d696883b9d21eb47c4 (diff)
downloadgnunet-5cd275c67f80866d3886520598c675d7d0e8c5de.tar.gz
gnunet-5cd275c67f80866d3886520598c675d7d0e8c5de.zip
-fix
m---------contrib/gana0
m---------contrib/sphinx0
-rw-r--r--src/util/configuration.c10
3 files changed, 5 insertions, 5 deletions
diff --git a/contrib/gana b/contrib/gana
Subproject c4142e681a0921c186fe4a413840c2b884e8247 Subproject 66228b8a4306f028d843d78fbfcca54260539ff
diff --git a/contrib/sphinx b/contrib/sphinx
Subproject e6d65efe70f694d030182401437d309532c1cc1 Subproject 9c5b9d9040d21542eff792e26624cf9669b127a
diff --git a/src/util/configuration.c b/src/util/configuration.c
index 6b6a1ee15..5b00ab712 100644
--- a/src/util/configuration.c
+++ b/src/util/configuration.c
@@ -2308,13 +2308,13 @@ GNUNET_CONFIGURATION_remove_value_filename (
2308 else 2308 else
2309 pos[0] = '\0'; 2309 pos[0] = '\0';
2310 } 2310 }
2311 ret = GNUNET_CONFIGURATION_set_value_string (cfg, 2311 GNUNET_CONFIGURATION_set_value_string (cfg,
2312 section, 2312 section,
2313 option, 2313 option,
2314 list); 2314 list);
2315 GNUNET_free (list); 2315 GNUNET_free (list);
2316 GNUNET_free (match); 2316 GNUNET_free (match);
2317 return ret; 2317 return GNUNET_OK;
2318 } 2318 }
2319 if (old == '\0') 2319 if (old == '\0')
2320 break; 2320 break;