]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-ipcomp.c
Fix a typo.
[tcpdump] / print-ipcomp.c
index ed2f49d07e1158fb08817bf1f94445ab777cc48e..86625429b26976663a4a2f5af43fd060102e78db 100644 (file)
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.4 2000-01-19 04:51:11 itojun Exp $";
+#endif
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
 #endif
 
 #include <string.h>
@@ -48,15 +52,12 @@ static const char rcsid[] =
 #ifdef INET6
 #include <netinet/ip6.h>
 #endif
-#ifdef HAVE_NETINET6_IPCOMP_H
-#include <netinet6/ipcomp.h>
-#else
+
 struct ipcomp {
        u_int8_t comp_nxt;      /* Next Header */
        u_int8_t comp_flags;    /* Length of data, in 32bit */
        u_int16_t comp_cpi;     /* Compression parameter index */
 };
-#endif
 
 #if defined(HAVE_LIBZ) && defined(HAVE_ZLIB_H)
 #include <zlib.h>