summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2018-08-11 14:45:42 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2018-08-11 14:45:42 +0100
commitd16931c81f3e500fa6eafe5ec1c5d8e7db63e65a (patch)
tree31d2397c5345978f3b2974e9835bdbc6a61fff70 /src
parent8a6b4e02cd384193a5566e8601bdd97249b22284 (diff)
Fix logging all_parents for cutthrough delivery. Bug 2296
Diffstat (limited to 'src')
-rw-r--r--src/src/verify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/verify.c b/src/src/verify.c
index 6411899c8..c92ef65cd 100644
--- a/src/src/verify.c
+++ b/src/src/verify.c
@@ -1101,7 +1101,7 @@ no_conn:
cutthrough.addr.host_used = &cutthrough.host;
for (caddr = &cutthrough.addr, parent = addr->parent;
parent;
- parent = parent->parent)
+ caddr = caddr->parent, parent = parent->parent)
*(caddr->parent = store_get(sizeof(address_item))) = *parent;
ctblock.buffer = ctbuffer;