aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-12-17 03:07:27 +0000
committerChristian Grothoff <christian@grothoff.org>2014-12-17 03:07:27 +0000
commit18deec1f15888454a5ec35351126512612754f57 (patch)
tree5c2dc9eb5632580836de43d3f0e8d245447f2208 /src/util
parent627862924d8dceb768b6eb7fc6005cda5f888b3a (diff)
downloadgnunet-18deec1f15888454a5ec35351126512612754f57.tar.gz
gnunet-18deec1f15888454a5ec35351126512612754f57.zip
-remove dead api
Diffstat (limited to 'src/util')
-rw-r--r--src/util/configuration.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/util/configuration.c b/src/util/configuration.c
index 8444c2d7d..9b68513af 100644
--- a/src/util/configuration.c
+++ b/src/util/configuration.c
@@ -324,7 +324,7 @@ GNUNET_CONFIGURATION_parse (struct GNUNET_CONFIGURATION_Handle *cfg,
324 LOG (GNUNET_ERROR_TYPE_DEBUG, 324 LOG (GNUNET_ERROR_TYPE_DEBUG,
325 "Config file name expanded to `%s'\n", 325 "Config file name expanded to `%s'\n",
326 fn); 326 fn);
327 if (fn == NULL) 327 if (NULL == fn)
328 return GNUNET_SYSERR; 328 return GNUNET_SYSERR;
329 dirty = cfg->dirty; /* back up value! */ 329 dirty = cfg->dirty; /* back up value! */
330 if (GNUNET_SYSERR == 330 if (GNUNET_SYSERR ==
@@ -351,7 +351,9 @@ GNUNET_CONFIGURATION_parse (struct GNUNET_CONFIGURATION_Handle *cfg,
351 GNUNET_free (mem); 351 GNUNET_free (mem);
352 return GNUNET_SYSERR; 352 return GNUNET_SYSERR;
353 } 353 }
354 LOG (GNUNET_ERROR_TYPE_DEBUG, "Deserializing contents of file `%s'\n", fn); 354 LOG (GNUNET_ERROR_TYPE_DEBUG,
355 "Deserializing contents of file `%s'\n",
356 fn);
355 GNUNET_free (fn); 357 GNUNET_free (fn);
356 ret = GNUNET_CONFIGURATION_deserialize (cfg, mem, fs, GNUNET_YES); 358 ret = GNUNET_CONFIGURATION_deserialize (cfg, mem, fs, GNUNET_YES);
357 GNUNET_free (mem); 359 GNUNET_free (mem);