aboutsummaryrefslogtreecommitdiff
path: root/src/dht
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-04-19 17:01:38 +0000
committerChristian Grothoff <christian@grothoff.org>2012-04-19 17:01:38 +0000
commit63feadfacea651a849a8d859bde336697e14d0d3 (patch)
tree9c9751dfc375cac0b1abddc64f5f6262da965021 /src/dht
parent88466b920cfad65d6bf41802b262b86ae76f5791 (diff)
downloadgnunet-63feadfacea651a849a8d859bde336697e14d0d3.tar.gz
gnunet-63feadfacea651a849a8d859bde336697e14d0d3.zip
-fix
Diffstat (limited to 'src/dht')
-rw-r--r--src/dht/gnunet-service-dht_clients.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dht/gnunet-service-dht_clients.c b/src/dht/gnunet-service-dht_clients.c
index 2046f4990..98e280094 100644
--- a/src/dht/gnunet-service-dht_clients.c
+++ b/src/dht/gnunet-service-dht_clients.c
@@ -87,7 +87,7 @@ struct ClientList
87 * Handle to the current transmission request, NULL 87 * Handle to the current transmission request, NULL
88 * if none pending. 88 * if none pending.
89 */ 89 */
90 struct GNUNET_CONNECTION_TransmitHandle *transmit_handle; 90 struct GNUNET_SERVER_TransmitHandle *transmit_handle;
91 91
92 /** 92 /**
93 * Linked list of pending messages for this client 93 * Linked list of pending messages for this client
@@ -326,7 +326,7 @@ handle_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
326 pos = find_active_client (client); 326 pos = find_active_client (client);
327 GNUNET_CONTAINER_DLL_remove (client_head, client_tail, pos); 327 GNUNET_CONTAINER_DLL_remove (client_head, client_tail, pos);
328 if (pos->transmit_handle != NULL) 328 if (pos->transmit_handle != NULL)
329 GNUNET_CONNECTION_notify_transmit_ready_cancel (pos->transmit_handle); 329 GNUNET_SERVER_notify_transmit_ready_cancel (pos->transmit_handle);
330 while (NULL != (reply = pos->pending_head)) 330 while (NULL != (reply = pos->pending_head))
331 { 331 {
332 GNUNET_CONTAINER_DLL_remove (pos->pending_head, pos->pending_tail, reply); 332 GNUNET_CONTAINER_DLL_remove (pos->pending_head, pos->pending_tail, reply);