From b95bc05fce633096d6c6ec74b163ab92e3a39959 Mon Sep 17 00:00:00 2001 From: Steven Date: Tue, 27 Feb 2018 10:29:32 -0800 Subject: sctp: sctp_output.c failed to compile when VLIB_BUFFER_TRACE_TRAJECTORY is enabled Fixed a typo in sctp_push_header(). It was inherited from tcp_output.c Change-Id: I810fcb4c24cfd3d54f15da72a5184cfc4df24592 Signed-off-by: Steven --- src/vnet/sctp/sctp_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vnet') diff --git a/src/vnet/sctp/sctp_output.c b/src/vnet/sctp/sctp_output.c index 5e64ca792af..b7351275486 100644 --- a/src/vnet/sctp/sctp_output.c +++ b/src/vnet/sctp/sctp_output.c @@ -1381,7 +1381,7 @@ sctp_push_header (transport_connection_t * trans_conn, vlib_buffer_t * b) sctp_push_hdr_i (sctp_conn, b, SCTP_STATE_ESTABLISHED); - sctp_trajectory_add_start (b0, 3); + sctp_trajectory_add_start (b, 3); return 0; } -- cgit 1.2.3-korg