svn commit: r268990 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Tue Jul 22 19:54:23 UTC 2014


Author: tuexen
Date: Tue Jul 22 19:54:22 2014
New Revision: 268990
URL: http://svnweb.freebsd.org/changeset/base/268990

Log:
  Cleanup the definition of two structures which are
  exposed to userland. Therefore no MFC.

Modified:
  head/sys/netinet/sctp_uio.h

Modified: head/sys/netinet/sctp_uio.h
==============================================================================
--- head/sys/netinet/sctp_uio.h	Tue Jul 22 19:48:21 2014	(r268989)
+++ head/sys/netinet/sctp_uio.h	Tue Jul 22 19:54:22 2014	(r268990)
@@ -323,7 +323,6 @@ struct sctp_paddr_change {
 	uint32_t spc_state;
 	uint32_t spc_error;
 	sctp_assoc_t spc_assoc_id;
-	uint8_t spc_padding[4];
 };
 
 /* paddr state values */
@@ -346,7 +345,7 @@ struct sctp_remote_error {
 	uint32_t sre_length;
 	uint16_t sre_error;
 	sctp_assoc_t sre_assoc_id;
-	uint8_t sre_data[4];
+	uint8_t sre_data[];
 };
 
 /* data send failure event (deprecated) */


More information about the svn-src-head mailing list