summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-05 16:56:41 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:56:41 +0200
commite428783e2e0295186dc4eae273df8a3f8b75df60 (patch)
tree92767e4394eb2576fa54f0558344769379e79e49 /src/exchange/taler-exchange-httpd.c
parent9c752b3d031dbbb06544553dc71fcfebfe7fdb05 (diff)
downloadexchange-e428783e2e0295186dc4eae273df8a3f8b75df60.tar.gz
exchange-e428783e2e0295186dc4eae273df8a3f8b75df60.tar.bz2
exchange-e428783e2e0295186dc4eae273df8a3f8b75df60.zip
GNUNET_free_non_null is gone, use GNUNET_free
Diffstat (limited to 'src/exchange/taler-exchange-httpd.c')
-rw-r--r--src/exchange/taler-exchange-httpd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
index a8e29d300..339303d53 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -1249,8 +1249,8 @@ main (int argc,
GNUNET_log_setup ("taler-exchange-httpd",
(NULL == loglev) ? "INFO" : loglev,
logfile));
- GNUNET_free_non_null (loglev);
- GNUNET_free_non_null (logfile);
+ GNUNET_free (loglev);
+ GNUNET_free (logfile);
if (NULL == cfgfile)
cfgfile = GNUNET_strdup (GNUNET_OS_project_data_get ()->user_config_file);
TEH_cfg = GNUNET_CONFIGURATION_create ();
@@ -1261,10 +1261,10 @@ main (int argc,
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Malformed configuration file `%s', exit ...\n",
cfgfile);
- GNUNET_free_non_null (cfgfile);
+ GNUNET_free (cfgfile);
return 1;
}
- GNUNET_free_non_null (cfgfile);
+ GNUNET_free (cfgfile);
if (GNUNET_OK !=
exchange_serve_process_config ())
return 1;