From d947aad0aede71936c592d65afcaedcaec0f0beb Mon Sep 17 00:00:00 2001 From: dimitri staessens Date: Sat, 29 Apr 2017 12:10:25 +0200 Subject: ipcpd: Fix sending fa dealloc message The frct instance was previously destroyed before sending the message, resulting in the destination address being 0 and the message getting dropped. Some fixes in the normal for deallocation, but will require further revision once all data transfer protocols are in place. --- src/ipcpd/normal/dt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ipcpd/normal/dt.c') diff --git a/src/ipcpd/normal/dt.c b/src/ipcpd/normal/dt.c index 0816ec10..4e0ba51d 100644 --- a/src/ipcpd/normal/dt.c +++ b/src/ipcpd/normal/dt.c @@ -275,7 +275,7 @@ int dt_write_sdu(uint64_t dst_addr, fd = pff_nhop(dt.pff[qc], dst_addr); if (fd < 0) { - log_err("Could not get nhop for address %" PRIu64, dst_addr); + log_err("Could not get nhop for addr %" PRIu64 ".", dst_addr); return -1; } -- cgit v1.2.3