netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fix sctp breakage
@ 2009-03-18  3:14 Al Viro
  2009-03-18  3:25 ` Al Viro
  2009-03-18 12:28 ` Vlad Yasevich
  0 siblings, 2 replies; 4+ messages in thread
From: Al Viro @ 2009-03-18  3:14 UTC (permalink / raw)
  To: David Miller; +Cc: Vlad Yasevich, netdev

broken by commit 5e739d1752aca4e8f3e794d431503bfca3162df4; AFAICS should
be -stable fodder as well...

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
diff --git a/net/sctp/endpointola.c b/net/sctp/endpointola.c
index 4c8d9f4..905fda5 100644
--- a/net/sctp/endpointola.c
+++ b/net/sctp/endpointola.c
@@ -111,7 +111,8 @@ static struct sctp_endpoint *sctp_endpoint_init(struct sctp_endpoint *ep,
 		if (sctp_addip_enable) {
 			auth_chunks->chunks[0] = SCTP_CID_ASCONF;
 			auth_chunks->chunks[1] = SCTP_CID_ASCONF_ACK;
-			auth_chunks->param_hdr.length += htons(2);
+			auth_chunks->param_hdr.length =
+					htons(sizeof(sctp_paramhdr_t) + 2);
 		}
 	}
 

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-03-19  2:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-18  3:14 [PATCH] fix sctp breakage Al Viro
2009-03-18  3:25 ` Al Viro
2009-03-18 12:28 ` Vlad Yasevich
2009-03-19  2:13   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).