diff options
author | Shan Wei <shanwei@cn.fujitsu.com> | 2011-04-18 19:11:47 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-19 21:45:19 -0700 |
commit | 6a435732accd9e3f4a8d9c320fabe578b1bf5add (patch) | |
tree | 35492d5afc59dabb41361c5a6dec015b89303fe6 /net/sctp/input.c | |
parent | 33c7cfdbb0d2bc021979e4947c7030c30d572532 (diff) | |
download | linux-6a435732accd9e3f4a8d9c320fabe578b1bf5add.tar.gz linux-6a435732accd9e3f4a8d9c320fabe578b1bf5add.tar.bz2 linux-6a435732accd9e3f4a8d9c320fabe578b1bf5add.zip |
sctp: use common head of addr parameter to access member in addr-unrelated code
The 'p' member of struct sctp_paramhdr is common part for
IPv4 addr parameter and IPv6 addr parameter in union sctp_addr_param.
For addr-related code, use specified addr parameter.
Otherwise, use common header to access type/length member.
Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com>
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/input.c')
-rw-r--r-- | net/sctp/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/input.c b/net/sctp/input.c index 5436c6921167..30cec7732e80 100644 --- a/net/sctp/input.c +++ b/net/sctp/input.c @@ -1017,7 +1017,7 @@ static struct sctp_association *__sctp_rcv_asconf_lookup( /* Skip over the ADDIP header and find the Address parameter */ param = (union sctp_addr_param *)(asconf + 1); - af = sctp_get_af_specific(param_type2af(param->v4.param_hdr.type)); + af = sctp_get_af_specific(param_type2af(param->p.type)); if (unlikely(!af)) return NULL; |