rx-dont-include-arraysize-in-offsetof-20020125

so this compiles on irix
This commit is contained in:
Nickolai Zeldovich 2002-01-26 03:40:30 +00:00 committed by Derrick Brashear
parent 4ff68264b6
commit 62bc57574a

View File

@ -739,7 +739,7 @@ struct rx_ackPacket {
#define RX_ACK_TYPE_ACK 1 /* I have this packet, although I may discard it later */
/* The packet size transmitted for an acknowledge is adjusted to reflect the actual size of the acks array. This macro defines the size */
#define rx_AckDataSize(nAcks) (3 + offsetof(struct rx_ackPacket, acks[nAcks]))
#define rx_AckDataSize(nAcks) (3 + nAcks + offsetof(struct rx_ackPacket, acks[0]))
#define RX_CHALLENGE_TIMEOUT 2 /* Number of seconds before another authentication request packet is generated */
#define RX_CHALLENGE_MAXTRIES 50 /* Max # of times we resend challenge */