diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-07-17 11:29:49 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-16 20:52:13 -0700 |
commit | a38905e6aa1a758af003b80f3318196eadb86dfe (patch) | |
tree | 5b98d2318dd8d2b31f7c34cea5ff03fabefff606 /net/sctp/protocol.c | |
parent | aed20a53a7d91e45c6a8cb8920c77aaaa88f76ee (diff) |
sctp: remove the typedef sctp_ipv4addr_param_t
This patch is to remove the typedef sctp_ipv4addr_param_t, and replace
with struct sctp_ipv4addr_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/protocol.c')
-rw-r--r-- | net/sctp/protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c index 989a900383b5..852556d67ae3 100644 --- a/net/sctp/protocol.c +++ b/net/sctp/protocol.c @@ -292,7 +292,7 @@ static void sctp_v4_from_addr_param(union sctp_addr *addr, static int sctp_v4_to_addr_param(const union sctp_addr *addr, union sctp_addr_param *param) { - int length = sizeof(sctp_ipv4addr_param_t); + int length = sizeof(struct sctp_ipv4addr_param); param->v4.param_hdr.type = SCTP_PARAM_IPV4_ADDRESS; param->v4.param_hdr.length = htons(length); |