aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_server.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-20 17:22:34 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-20 17:22:34 +0000
commit403e47c8f0a1cccc7478a17d6b8dd95f4214c093 (patch)
tree596ddd0f3c15eb6c9e09562ca3458c735d867b07 /src/transport/plugin_transport_http_server.c
parent6b6fa821eea0d1fcec5ddd146856c529ae01eee3 (diff)
downloadgnunet-403e47c8f0a1cccc7478a17d6b8dd95f4214c093.tar.gz
gnunet-403e47c8f0a1cccc7478a17d6b8dd95f4214c093.zip
fix bad free
Diffstat (limited to 'src/transport/plugin_transport_http_server.c')
-rw-r--r--src/transport/plugin_transport_http_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_http_server.c b/src/transport/plugin_transport_http_server.c
index c1c35d4ba..158532aca 100644
--- a/src/transport/plugin_transport_http_server.c
+++ b/src/transport/plugin_transport_http_server.c
@@ -138,7 +138,7 @@ server_load_certificate (struct Plugin *plugin)
138 GNUNET_CONFIGURATION_get_value_filename (plugin->env->cfg, plugin->name, 138 GNUNET_CONFIGURATION_get_value_filename (plugin->env->cfg, plugin->name,
139 "KEY_FILE", &key_file)) 139 "KEY_FILE", &key_file))
140 { 140 {
141 key_file = "https_key.key"; 141 key_file = GNUNET_strdup ("https_key.key");
142 } 142 }
143 143
144 if (GNUNET_OK != 144 if (GNUNET_OK !=