aboutsummaryrefslogtreecommitdiff
path: root/src/util
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 /src/util
parentc6ca29f769105725221819d696883b9d21eb47c4 (diff)
downloadgnunet-5cd275c67f80866d3886520598c675d7d0e8c5de.tar.gz
gnunet-5cd275c67f80866d3886520598c675d7d0e8c5de.zip
-fix
Diffstat (limited to 'src/util')
-rw-r--r--src/util/configuration.c10
1 files changed, 5 insertions, 5 deletions
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;