Marked these as packed correctly

This commit is contained in:
Warner Losh 2007-01-12 07:20:25 +00:00
parent 30a270b44b
commit 1c0ee39e74
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=165965
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ union cblock {
u_int8_t nonce[4];
u_int8_t iv[8];
u_int32_t ctr;
} v __attribute__((__packed__));
} __packed v;
u_int8_t cblock[16];
};

View File

@ -100,7 +100,7 @@ in6_cksum(struct mbuf *m, u_int8_t nxt, u_int32_t off, u_int32_t len)
u_int32_t ph_len;
u_int8_t ph_zero[3];
u_int8_t ph_nxt;
} ph __packed;
} __packed ph;
} uph;
union {
u_int8_t c[2];