diff options
author | Guy Harris <guy@alum.mit.edu> | 2014-04-23 11:53:22 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2014-04-23 11:53:22 -0700 |
commit | a2633f2f21439cc453530a0cff47ac6084c40a76 (patch) | |
tree | cf77f1e4fd4b1e18fcda1e047e84f959ae584640 /in_cksum.c | |
parent | 30f0d2314d1086ebf4bad29b1d11c7916338b95d (diff) | |
download | tcpdump-a2633f2f21439cc453530a0cff47ac6084c40a76.tar.gz |
More fixes for uint8_t being shorter than u_int8_t.
Fix a typo while we're at it.
Diffstat (limited to 'in_cksum.c')
-rw-r--r-- | in_cksum.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ in_cksum(const struct cksum_vec *vec, int veclen) int byte_swapped = 0; union { - uint8_t c[2]; + uint8_t c[2]; uint16_t s; } s_util; union { |