]> git.scottworley.com Git - tattlekey/blobdiff - client/tattlekey.c
client: Rename: send_report -> send_report_packet
[tattlekey] / client / tattlekey.c
index c600448cdb590cf56ace165347b09ce8d127bcd0..2fc604b27a338af444a6213fe680c086b2c9f29e 100644 (file)
@@ -78,7 +78,7 @@ void service_sleeps(int alarm, send_t *sleeping_sends, pheap_t *sleeps_heap) {
     pheap_node_id_t i = ph_remove_head(sleeps_heap, false);
     send_t *send = &sleeping_sends[i];
     uint32_t ago = now - send->timestamp;
-    send_report(send->seq, ago);
+    send_report_packet(send->seq, ago);
     send->send_count++;
     if (send->send_count < config_resend_count)
       ph_insert_node(sleeps_heap, i);