aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_clients.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-06-27 07:48:14 +0000
committerChristian Grothoff <christian@grothoff.org>2016-06-27 07:48:14 +0000
commit8d7a8374f8d3fbd0c58eeb9ef87d5bf328cba751 (patch)
tree93e44cd35294c9e898d582fd4e3c3614195c09a3 /src/dht/gnunet-service-dht_clients.c
parent2af64898902ea5def231dc0ba17fcd197dfb0c66 (diff)
downloadgnunet-8d7a8374f8d3fbd0c58eeb9ef87d5bf328cba751.tar.gz
gnunet-8d7a8374f8d3fbd0c58eeb9ef87d5bf328cba751.zip
-fix arg order
Diffstat (limited to 'src/dht/gnunet-service-dht_clients.c')
-rw-r--r--src/dht/gnunet-service-dht_clients.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dht/gnunet-service-dht_clients.c b/src/dht/gnunet-service-dht_clients.c
index 942bf5785..305826aec 100644
--- a/src/dht/gnunet-service-dht_clients.c
+++ b/src/dht/gnunet-service-dht_clients.c
@@ -782,7 +782,8 @@ remove_by_unique_id (void *cls, const struct GNUNET_HashCode * key, void *value)
782 * 782 *
783 */ 783 */
784static void 784static void
785handle_dht_local_get_stop (void *cls, struct GNUNET_SERVER_Client *client, 785handle_dht_local_get_stop (void *cls,
786 struct GNUNET_SERVER_Client *client,
786 const struct GNUNET_MessageHeader *message) 787 const struct GNUNET_MessageHeader *message)
787{ 788{
788 const struct GNUNET_DHT_ClientGetStopMessage *dht_stop_msg = 789 const struct GNUNET_DHT_ClientGetStopMessage *dht_stop_msg =
@@ -795,7 +796,8 @@ handle_dht_local_get_stop (void *cls, struct GNUNET_SERVER_Client *client,
795 GNUNET_NO); 796 GNUNET_NO);
796 LOG (GNUNET_ERROR_TYPE_DEBUG, 797 LOG (GNUNET_ERROR_TYPE_DEBUG,
797 "Received GET STOP request for %s from local client %p\n", 798 "Received GET STOP request for %s from local client %p\n",
798 client, GNUNET_h2s (&dht_stop_msg->key)); 799 GNUNET_h2s (&dht_stop_msg->key),
800 client);
799 ctx.client = find_active_client (client); 801 ctx.client = find_active_client (client);
800 ctx.unique_id = dht_stop_msg->unique_id; 802 ctx.unique_id = dht_stop_msg->unique_id;
801 GNUNET_CONTAINER_multihashmap_get_multiple (forward_map, &dht_stop_msg->key, 803 GNUNET_CONTAINER_multihashmap_get_multiple (forward_map, &dht_stop_msg->key,