aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_http_client.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-09-04 10:01:37 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-09-04 10:01:37 +0000
commit2d0aa8253af4a09896597924356e0663007e205a (patch)
treec27e3d339656d2aa9f447367ba1e6ed6a977ba2d /src/transport/plugin_transport_http_client.c
parentcf17dc692dbedbb72083b1a0d031144f1e7f1626 (diff)
downloadgnunet-2d0aa8253af4a09896597924356e0663007e205a.tar.gz
gnunet-2d0aa8253af4a09896597924356e0663007e205a.zip
fix unload
Diffstat (limited to 'src/transport/plugin_transport_http_client.c')
-rw-r--r--src/transport/plugin_transport_http_client.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/transport/plugin_transport_http_client.c b/src/transport/plugin_transport_http_client.c
index f7fab9b3f..eda1f59be 100644
--- a/src/transport/plugin_transport_http_client.c
+++ b/src/transport/plugin_transport_http_client.c
@@ -1338,10 +1338,6 @@ LIBGNUNET_PLUGIN_TRANSPORT_DONE (void *cls)
1338 struct Session *pos; 1338 struct Session *pos;
1339 struct Session *next; 1339 struct Session *next;
1340 1340
1341 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1342 _("Shutting down plugin `%s'\n"),
1343 plugin->name);
1344
1345 if (NULL == api->cls) 1341 if (NULL == api->cls)
1346 { 1342 {
1347 /* Stub shutdown */ 1343 /* Stub shutdown */
@@ -1349,6 +1345,11 @@ LIBGNUNET_PLUGIN_TRANSPORT_DONE (void *cls)
1349 return NULL; 1345 return NULL;
1350 } 1346 }
1351 1347
1348 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1349 _("Shutting down plugin `%s'\n"),
1350 plugin->name);
1351
1352
1352 next = plugin->head; 1353 next = plugin->head;
1353 while (NULL != (pos = next)) 1354 while (NULL != (pos = next))
1354 { 1355 {