From: Guy Harris Date: Wed, 20 Sep 2017 18:20:36 +0000 (-0700) Subject: Actually, the UNALIGNED might not be necessary. X-Git-Tag: tcpdump-4.99-bp~1832 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/56f51802672305ef82016b30adedb6da2996362c Actually, the UNALIGNED might not be necessary. --- diff --git a/print-ntp.c b/print-ntp.c index bf1ee461..3ccf9833 100644 --- a/print-ntp.c +++ b/print-ntp.c @@ -70,12 +70,12 @@ static const char tstr[] = " [|ntp]"; struct l_fixedpt { nd_uint32_t int_part; nd_uint32_t fraction; -} UNALIGNED; +}; struct s_fixedpt { nd_uint16_t int_part; nd_uint16_t fraction; -} UNALIGNED; +}; /* rfc2030 * 1 2 3 @@ -135,7 +135,7 @@ struct ntp_time_data { struct l_fixedpt xmt_timestamp; nd_uint32_t key_id; nd_uint8_t message_digest[20]; -} UNALIGNED; +}; /* * Leap Second Codes (high order two bits) */ @@ -247,7 +247,7 @@ struct ntp_control_data { nd_uint16_t offset; /* Offset */ nd_uint16_t count; /* Count */ nd_uint8_t data[564]; /* Data, [Padding, [Authenticator]] */ -} UNALIGNED; +}; /* * Print NTP time requests and responses