summaryrefslogtreecommitdiffstats
path: root/net/sctp/sm_statefuns.c
diff options
context:
space:
mode:
authorXin Long <lucien.xin@gmail.com>2017-07-23 09:34:32 +0800
committerDavid S. Miller <davem@davemloft.net>2017-07-24 16:01:20 -0700
commit787310859d8d1a72545db2343fb3ac8f765b0f35 (patch)
tree6f42ca2122e294f6979934f66c1315d61380d743 /net/sctp/sm_statefuns.c
parentafd93b7be6e24731d82d9fd84b8a5ea73a68214b (diff)
downloadlinux-0-day-787310859d8d1a72545db2343fb3ac8f765b0f35.tar.gz
linux-0-day-787310859d8d1a72545db2343fb3ac8f765b0f35.tar.xz
sctp: remove the typedef sctp_sackhdr_t
This patch is to remove the typedef sctp_sackhdr_t, and replace with struct sctp_sackhdr in the places where it's using this typedef. Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/sm_statefuns.c')
-rw-r--r--net/sctp/sm_statefuns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c
index 7f852392f56a9..c09dfe6ebac29 100644
--- a/net/sctp/sm_statefuns.c
+++ b/net/sctp/sm_statefuns.c
@@ -3187,7 +3187,7 @@ sctp_disposition_t sctp_sf_eat_sack_6_2(struct net *net,
sctp_cmd_seq_t *commands)
{
struct sctp_chunk *chunk = arg;
- sctp_sackhdr_t *sackh;
+ struct sctp_sackhdr *sackh;
__u32 ctsn;
if (!sctp_vtag_verify(chunk, asoc))