summaryrefslogtreecommitdiffstats
path: root/net/sctp/chunk.c
diff options
context:
space:
mode:
authorXin Long2017-08-03 09:42:22 +0200
committerDavid S. Miller2017-08-03 18:45:47 +0200
commitbb96dec74543bb3ceb4ac5caf39341dadb4cb559 (patch)
tree3b8c5621ac489ae3581151062c46f36960f195a7 /net/sctp/chunk.c
parentsctp: remove the typedef sctp_authhdr_t (diff)
downloadkernel-qcow2-linux-bb96dec74543bb3ceb4ac5caf39341dadb4cb559.tar.gz
kernel-qcow2-linux-bb96dec74543bb3ceb4ac5caf39341dadb4cb559.tar.xz
kernel-qcow2-linux-bb96dec74543bb3ceb4ac5caf39341dadb4cb559.zip
sctp: remove the typedef sctp_auth_chunk_t
This patch is to remove the typedef sctp_auth_chunk_t, and replace with struct sctp_auth_chunk in the places where it's using this typedef. It is also to use sizeof(variable) instead of sizeof(type). Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/chunk.c')
-rw-r--r--net/sctp/chunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/chunk.c b/net/sctp/chunk.c
index 681b181e7ae3..3afac275ee82 100644
--- a/net/sctp/chunk.c
+++ b/net/sctp/chunk.c
@@ -201,7 +201,7 @@ struct sctp_datamsg *sctp_datamsg_from_user(struct sctp_association *asoc,
struct sctp_hmac *hmac_desc = sctp_auth_asoc_get_hmac(asoc);
if (hmac_desc)
- max_data -= SCTP_PAD4(sizeof(sctp_auth_chunk_t) +
+ max_data -= SCTP_PAD4(sizeof(struct sctp_auth_chunk) +
hmac_desc->hmac_len);
}