diff options
author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-29 12:10:25 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-29 13:37:19 +0200 |
commit | d947aad0aede71936c592d65afcaedcaec0f0beb (patch) | |
tree | ad8aca3e09bfd714254b96a207cb12eefe61d0cc /src/ipcpd/normal/dt.c | |
parent | 41b73370dba4105ae183babe8f89480e8c9d038a (diff) | |
download | ouroboros-d947aad0aede71936c592d65afcaedcaec0f0beb.tar.gz ouroboros-d947aad0aede71936c592d65afcaedcaec0f0beb.zip |
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.
Diffstat (limited to 'src/ipcpd/normal/dt.c')
-rw-r--r-- | src/ipcpd/normal/dt.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |