aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-15 08:12:43 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-15 08:12:43 +0000
commitca5418e74010c0034f7f24ad8a7a2ecb6e941af1 (patch)
tree77a70689cc5a2d22df9ee0ecdd0c523fab657e7b
parent66b5e4984ea45b8cce522e8d405b9056f62ea6dc (diff)
downloadgnunet-ca5418e74010c0034f7f24ad8a7a2ecb6e941af1.tar.gz
gnunet-ca5418e74010c0034f7f24ad8a7a2ecb6e941af1.zip
fix 1903
-rw-r--r--src/transport/plugin_transport_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_http.c b/src/transport/plugin_transport_http.c
index 571b0db49..4f15a95a2 100644
--- a/src/transport/plugin_transport_http.c
+++ b/src/transport/plugin_transport_http.c
@@ -461,7 +461,7 @@ notify_session_end (void *cls, const struct GNUNET_PeerIdentity *peer,
461{ 461{
462 struct Plugin *plugin = cls; 462 struct Plugin *plugin = cls;
463 463
464 plugin->env->session_end (NULL, peer, s); 464 plugin->env->session_end (plugin->env->cls, peer, s);
465 GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s); 465 GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
466 delete_session (s); 466 delete_session (s);
467} 467}