aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/plugins/srv6-mobile/node.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/srv6-mobile/node.c b/src/plugins/srv6-mobile/node.c
index 36445a683c0..ed0697a8009 100644
--- a/src/plugins/srv6-mobile/node.c
+++ b/src/plugins/srv6-mobile/node.c
@@ -664,9 +664,9 @@ VLIB_NODE_FN (srv6_end_m_gtp4_e)
srv6_end_rewrite_trace_t *tr =
vlib_add_trace (vm, node, b0, sizeof (*tr));
clib_memcpy (tr->src.as_u8, hdr0->ip4.src_address.as_u8,
- sizeof (tr->src.as_u8));
+ sizeof (hdr0->ip4.src_address.as_u8));
clib_memcpy (tr->dst.as_u8, hdr0->ip4.dst_address.as_u8,
- sizeof (tr->dst.as_u8));
+ sizeof (hdr0->ip4.dst_address.as_u8));
tr->teid = hdr0->gtpu.teid;
}
}