aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorWei Yongjun <yjwei@cn.fujitsu.com>2007-08-02 05:02:29 -0400
committerVlad Yasevich <vladislav.yasevich@hp.com>2007-08-02 10:56:07 -0400
commit5f8f1c3c87e44f1bd0180cf19d0e7c83d062b4dc (patch)
tree8faec795d61c773da558aeed2307cac274b86689 /net
parentaecedeab6fcf914929cd8ff6fa0b8ae9bfdf3d30 (diff)
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.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 ba76ceca2a4e..51c4d7fef1d2 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,
113 const void *payload, size_t paylen) 113 const void *payload, size_t paylen)
114{ 114{
115 sctp_errhdr_t err; 115 sctp_errhdr_t err;
116 int padlen;
117 __u16 len; 116 __u16 len;
118 117
119 /* Cause code constants are now defined in network order. */ 118 /* Cause code constants are now defined in network order. */
120 err.cause = cause_code; 119 err.cause = cause_code;
121 len = sizeof(sctp_errhdr_t) + paylen; 120 len = sizeof(sctp_errhdr_t) + paylen;
122 padlen = len % 4;
123 err.length = htons(len); 121 err.length = htons(len);
124 len += padlen;
125 chunk->subh.err_hdr = sctp_addto_chunk(chunk, sizeof(sctp_errhdr_t), &err); 122 chunk->subh.err_hdr = sctp_addto_chunk(chunk, sizeof(sctp_errhdr_t), &err);
126 sctp_addto_chunk(chunk, paylen, payload); 123 sctp_addto_chunk(chunk, paylen, payload);
127} 124}