#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-null.c,v 1.29 1999-11-21 12:38:24 itojun Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-null.c,v 1.31 2000-07-01 03:39:07 assar Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
#include <sys/file.h>
#include <sys/ioctl.h>
-#if __STDC__
struct mbuf;
struct rtentry;
-#endif
#include <net/if.h>
#include <netinet/in.h>
null_print(p, ip, length);
switch (ip->ip_v) {
- case 4 :
- ip_print((const void *)ip, length);
+ case 4:
+ ip_print((const u_char *)ip, length);
break;
#ifdef INET6
case 6:
- ip6_print((const void *)ip, length);
+ ip6_print((const u_char *)ip, length);
break;
#endif /* INET6 */
- default :
+ default:
printf("ip v%d", ip->ip_v);
break;
}