summaryrefslogtreecommitdiff
path: root/core/DHT.c
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-07-19 12:09:40 -0400
committerirungentoo <irungentoo@gmail.com>2013-07-19 12:09:40 -0400
commit2d88476d44216b7032bdddf19cf8eba38b7f6705 (patch)
tree7bd57a4a5896b793e31e4117a55d370a16f76f36 /core/DHT.c
parent8a50c0472501f4d5ccf3714b7499fc1575c09a6c (diff)
Fixed big bug in DHT.
Diffstat (limited to 'core/DHT.c')
-rw-r--r--core/DHT.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/DHT.c b/core/DHT.c
index afa32023..232bf1e1 100644
--- a/core/DHT.c
+++ b/core/DHT.c
@@ -206,7 +206,7 @@ int get_close_nodes(uint8_t * client_id, Node_format * nodes_list)
206 } 206 }
207 else for(k = 0; k < MAX_SENT_NODES; k++) 207 else for(k = 0; k < MAX_SENT_NODES; k++)
208 { 208 {
209 if(id_closest(client_id, nodes_list[k].client_id, friends_list[i].client_list[j].client_id) == 2) 209 if(id_closest(friends_list[i].client_id, nodes_list[k].client_id, friends_list[i].client_list[j].client_id) == 2)
210 { 210 {
211 memcpy(nodes_list[k].client_id, friends_list[i].client_list[j].client_id, CLIENT_ID_SIZE); 211 memcpy(nodes_list[k].client_id, friends_list[i].client_list[j].client_id, CLIENT_ID_SIZE);
212 nodes_list[k].ip_port = friends_list[i].client_list[j].ip_port; 212 nodes_list[k].ip_port = friends_list[i].client_list[j].ip_port;