summaryrefslogtreecommitdiffstats
path: root/iface.c
diff options
context:
space:
mode:
Diffstat (limited to 'iface.c')
-rw-r--r--iface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iface.c b/iface.c
index 24d5a37..d2daf40 100644
--- a/iface.c
+++ b/iface.c
@@ -447,12 +447,12 @@ void flx_interface_post_query(flxInterface *i, flxKey *key, gboolean immediately
}
-void flx_interface_post_response(flxInterface *i, flxRecord *record, gboolean immediately) {
+void flx_interface_post_response(flxInterface *i, const flxAddress *a, flxRecord *record, gboolean immediately) {
g_assert(i);
g_assert(record);
if (flx_interface_relevant(i))
- flx_packet_scheduler_post_response(i->scheduler, record, immediately);
+ flx_packet_scheduler_post_response(i->scheduler, a, record, immediately);
}
void flx_dump_caches(flxInterfaceMonitor *m, FILE *f) {