From 052230f978675bccc160694df9e7b8b19c2f4995 Mon Sep 17 00:00:00 2001 From: Michael Tuexen Date: Thu, 24 Nov 2011 10:58:48 +0000 Subject: [PATCH] Move up the address to the top of the sctp_udencaps structure like in all other structures. This avoids alignment problems. MFC after: 3 months. --- sys/netinet/sctp_uio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/sctp_uio.h b/sys/netinet/sctp_uio.h index 5935c014f9d4..c7207210c3fa 100644 --- a/sys/netinet/sctp_uio.h +++ b/sys/netinet/sctp_uio.h @@ -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; };