svn commit: r231073 - stable/9/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Mon Feb 6 10:38:21 UTC 2012


Author: tuexen
Date: Mon Feb  6 10:38:20 2012
New Revision: 231073
URL: http://svn.freebsd.org/changeset/base/231073

Log:
  MFC r227931:
  Move up the address to the top of the sctp_udencaps structure
  like in all other structures. This avoids alignment problems.

Modified:
  stable/9/sys/netinet/sctp_uio.h
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/netinet/sctp_uio.h
==============================================================================
--- stable/9/sys/netinet/sctp_uio.h	Mon Feb  6 10:35:21 2012	(r231072)
+++ stable/9/sys/netinet/sctp_uio.h	Mon Feb  6 10:38:20 2012	(r231073)
@@ -672,8 +672,8 @@ struct sctp_timeouts {
 };
 
 struct sctp_udpencaps {
-	sctp_assoc_t sue_assoc_id;
 	struct sockaddr_storage sue_address;
+	sctp_assoc_t sue_assoc_id;
 	uint16_t sue_port;
 };
 


More information about the svn-src-stable mailing list