]> The Tcpdump Group git mirrors - tcpdump/blobdiff - ah.h
Avoid collison with error(), clean up code a bit.
[tcpdump] / ah.h
diff --git a/ah.h b/ah.h
index 5219e54ca6bc210be5906c734457e0b2735b08e8..d87a087e1a891c4391686df24f48d01d376a32cc 100644 (file)
--- a/ah.h
+++ b/ah.h
 #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 */