aboutsummaryrefslogtreecommitdiff
path: root/src/dht
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-05-06 21:51:47 +0200
committerChristian Grothoff <christian@grothoff.org>2018-05-06 21:51:47 +0200
commit3d07ace3af61b22eabe64ccd8b60cad464d36052 (patch)
tree0a77df968b7e4a4b598ceabc7e7d541217792417 /src/dht
parent27cbd6cf7afaeb663f77331f6bba79d312dd9105 (diff)
downloadgnunet-3d07ace3af61b22eabe64ccd8b60cad464d36052.tar.gz
gnunet-3d07ace3af61b22eabe64ccd8b60cad464d36052.zip
cosmestics
Diffstat (limited to 'src/dht')
-rw-r--r--src/dht/dht_api.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dht/dht_api.c b/src/dht/dht_api.c
index af0dafbf3..de29b05eb 100644
--- a/src/dht/dht_api.c
+++ b/src/dht/dht_api.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2009, 2010, 2011, 2012, 2016 GNUnet e.V. 3 Copyright (C) 2009, 2010, 2011, 2012, 2016, 2018 GNUnet e.V.
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
@@ -86,7 +86,7 @@ struct GNUNET_DHT_GetHandle
86 GNUNET_DHT_GetIterator iter; 86 GNUNET_DHT_GetIterator iter;
87 87
88 /** 88 /**
89 * Closure for @a iter. 89 * Closure for @e iter.
90 */ 90 */
91 void *iter_cls; 91 void *iter_cls;
92 92
@@ -292,8 +292,8 @@ send_get (struct GNUNET_DHT_GetHandle *gh)
292 get_msg->key = gh->key; 292 get_msg->key = gh->key;
293 get_msg->unique_id = gh->unique_id; 293 get_msg->unique_id = gh->unique_id;
294 GNUNET_memcpy (&get_msg[1], 294 GNUNET_memcpy (&get_msg[1],
295 &gh[1], 295 &gh[1],
296 gh->xquery_size); 296 gh->xquery_size);
297 GNUNET_MQ_send (h->mq, 297 GNUNET_MQ_send (h->mq,
298 env); 298 env);
299} 299}