summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei Yongjun <yjwei@cn.fujitsu.com>2007-08-02 17:02:29 +0800
committerVlad Yasevich <vladislav.yasevich@hp.com>2007-08-02 10:56:07 -0400
commit5f8f1c3c87e44f1bd0180cf19d0e7c83d062b4dc (patch)
tree8faec795d61c773da558aeed2307cac274b86689
parentaecedeab6fcf914929cd8ff6fa0b8ae9bfdf3d30 (diff)
downloadop-kernel-dev-5f8f1c3c87e44f1bd0180cf19d0e7c83d062b4dc.zip
op-kernel-dev-5f8f1c3c87e44f1bd0180cf19d0e7c83d062b4dc.tar.gz
SCTP: remove useless code in function sctp_init_cause
Some code in function sctp_init_cause() seem useless, this patch remove them. Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com> Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
-rw-r--r--net/sctp/sm_make_chunk.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c
index ba76cec..51c4d7f 100644
--- a/net/sctp/sm_make_chunk.c
+++ b/net/sctp/sm_make_chunk.c
@@ -113,15 +113,12 @@ void sctp_init_cause(struct sctp_chunk *chunk, __be16 cause_code,
const void *payload, size_t paylen)
{
sctp_errhdr_t err;
- int padlen;
__u16 len;
/* Cause code constants are now defined in network order. */
err.cause = cause_code;
len = sizeof(sctp_errhdr_t) + paylen;
- padlen = len % 4;
err.length = htons(len);
- len += padlen;
chunk->subh.err_hdr = sctp_addto_chunk(chunk, sizeof(sctp_errhdr_t), &err);
sctp_addto_chunk(chunk, paylen, payload);
}
OpenPOWER on IntegriCloud