]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-ospf.c
Remove unneeded #includes
[tcpdump] / print-ospf.c
index 92945b3929f66b85840a5bcb2ea609e4a023917f..3d67cb3ed9bb08886267f1311d438506b574d18a 100644 (file)
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-ospf.c,v 1.25 1999-10-17 21:37:14 mcr Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ospf.c,v 1.29 2000-09-29 04:58:45 guy Exp $ (LBL)";
+#endif
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
 #endif
 
 #include <sys/param.h>
@@ -31,8 +35,6 @@ static const char rcsid[] =
 #include <sys/socket.h>
 
 #include <netinet/in.h>
-#include <netinet/in_systm.h>
-#include <netinet/ip.h>
 
 #include <ctype.h>
 #include <stdio.h>
@@ -42,6 +44,8 @@ static const char rcsid[] =
 
 #include "ospf.h"
 
+#include "ip.h"
+
 struct bits {
        u_int32_t bit;
        const char *str;
@@ -506,9 +510,11 @@ ospf_print(register const u_char *bp, register u_int length,
        op = (struct ospfhdr *)bp;
        ip = (struct ip *)bp2;
        /* Print the source and destination address  */
+#if 0
        (void) printf("%s > %s:",
            ipaddr_string(&ip->ip_src),
            ipaddr_string(&ip->ip_dst));
+#endif
 
         /* XXX Before we do anything else, strip off the MD5 trailer */
         TCHECK(op->ospf_authtype);