diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-07-17 11:29:50 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-16 20:52:13 -0700 |
commit | 00987cc07e3f0f01699800cd89adf13a908cdee5 (patch) | |
tree | 4ef6dd5f025cb347a3a6acee2b7453a70ac77285 /net/sctp/ipv6.c | |
parent | a38905e6aa1a758af003b80f3318196eadb86dfe (diff) | |
download | lwn-00987cc07e3f0f01699800cd89adf13a908cdee5.tar.gz lwn-00987cc07e3f0f01699800cd89adf13a908cdee5.zip |
sctp: remove the typedef sctp_ipv6addr_param_t
This patch is to remove the typedef sctp_ipv6addr_param_t, and replace
with struct sctp_ipv6addr_param 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/ipv6.c')
-rw-r--r-- | net/sctp/ipv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c index 2a186b201ad2..107d7c912922 100644 --- a/net/sctp/ipv6.c +++ b/net/sctp/ipv6.c @@ -497,7 +497,7 @@ static void sctp_v6_from_addr_param(union sctp_addr *addr, static int sctp_v6_to_addr_param(const union sctp_addr *addr, union sctp_addr_param *param) { - int length = sizeof(sctp_ipv6addr_param_t); + int length = sizeof(struct sctp_ipv6addr_param); param->v6.param_hdr.type = SCTP_PARAM_IPV6_ADDRESS; param->v6.param_hdr.length = htons(length); |