diff options
author | Wei Yongjun <yjwei@cn.fujitsu.com> | 2007-08-02 17:02:29 +0800 |
---|---|---|
committer | Vlad Yasevich <vladislav.yasevich@hp.com> | 2007-08-02 10:56:07 -0400 |
commit | 5f8f1c3c87e44f1bd0180cf19d0e7c83d062b4dc (patch) | |
tree | 8faec795d61c773da558aeed2307cac274b86689 /net | |
parent | aecedeab6fcf914929cd8ff6fa0b8ae9bfdf3d30 (diff) | |
download | kernel-crypto-5f8f1c3c87e44f1bd0180cf19d0e7c83d062b4dc.tar.gz kernel-crypto-5f8f1c3c87e44f1bd0180cf19d0e7c83d062b4dc.tar.xz kernel-crypto-5f8f1c3c87e44f1bd0180cf19d0e7c83d062b4dc.zip |
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/sctp/sm_make_chunk.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/sctp/sm_make_chunk.c b/net/sctp/sm_make_chunk.c index ba76ceca2a4..51c4d7fef1d 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); } |