summaryrefslogtreecommitdiff
path: root/core/DHT.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/DHT.c')
-rw-r--r--core/DHT.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/DHT.c b/core/DHT.c
index 5ca3604f..b8cabd52 100644
--- a/core/DHT.c
+++ b/core/DHT.c
@@ -756,7 +756,7 @@ int DHT_handlepacket(uint8_t * packet, uint32_t length, IP_Port source)
756static uint32_t friend_lastgetnode[MAX_FRIENDS]; 756static uint32_t friend_lastgetnode[MAX_FRIENDS];
757 757
758 758
759void doFriends() 759void doDHTFriends()
760{ 760{
761 uint32_t i, j; 761 uint32_t i, j;
762 uint32_t temp_time = unix_time(); 762 uint32_t temp_time = unix_time();
@@ -836,7 +836,7 @@ void doClose()//tested
836void doDHT() 836void doDHT()
837{ 837{
838 doClose(); 838 doClose();
839 doFriends(); 839 doDHTFriends();
840} 840}
841 841
842 842