summaryrefslogtreecommitdiff
path: root/ah.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-04-23 11:53:22 -0700
committerGuy Harris <guy@alum.mit.edu>2014-04-23 11:53:22 -0700
commita2633f2f21439cc453530a0cff47ac6084c40a76 (patch)
treecf77f1e4fd4b1e18fcda1e047e84f959ae584640 /ah.h
parent30f0d2314d1086ebf4bad29b1d11c7916338b95d (diff)
downloadtcpdump-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 'ah.h')
-rw-r--r--ah.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ah.h b/ah.h
index 5219e54c..d87a087e 100644
--- a/ah.h
+++ b/ah.h
@@ -38,16 +38,16 @@
#define _NETINET6_AH_H_
struct ah {
- uint8_t ah_nxt; /* Next Header */
- uint8_t ah_len; /* Length of data, in 32bit */
+ uint8_t ah_nxt; /* Next Header */
+ uint8_t ah_len; /* Length of data, in 32bit */
uint16_t ah_reserve; /* Reserved for future use */
uint32_t ah_spi; /* Security parameter index */
/* variable size, 32bit bound*/ /* Authentication data */
};
struct newah {
- uint8_t ah_nxt; /* Next Header */
- uint8_t ah_len; /* Length of data + 1, in 32bit */
+ uint8_t ah_nxt; /* Next Header */
+ uint8_t ah_len; /* Length of data + 1, in 32bit */
uint16_t ah_reserve; /* Reserved for future use */
uint32_t ah_spi; /* Security parameter index */
uint32_t ah_seq; /* Sequence number field */