diff options
author | tuexen <tuexen@FreeBSD.org> | 2014-07-22 19:54:22 +0000 |
---|---|---|
committer | tuexen <tuexen@FreeBSD.org> | 2014-07-22 19:54:22 +0000 |
commit | 8a530385ea349a51426fa1f07f2887f0c6c0d0f6 (patch) | |
tree | f3c52fc87e03b59cfc3ae8f2a8da6f46ccec2578 /sys/netinet/sctp_uio.h | |
parent | 54d3760da06450823ceff7f9ca8275f255f08042 (diff) | |
download | FreeBSD-src-8a530385ea349a51426fa1f07f2887f0c6c0d0f6.zip FreeBSD-src-8a530385ea349a51426fa1f07f2887f0c6c0d0f6.tar.gz |
Cleanup the definition of two structures which are
exposed to userland. Therefore no MFC.
Diffstat (limited to 'sys/netinet/sctp_uio.h')
-rw-r--r-- | sys/netinet/sctp_uio.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/sctp_uio.h b/sys/netinet/sctp_uio.h index 1295391..18d58b0 100644 --- a/sys/netinet/sctp_uio.h +++ b/sys/netinet/sctp_uio.h @@ -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) */ |