diff options
author | itojun <itojun> | 2001-10-04 09:18:45 +0000 |
---|---|---|
committer | itojun <itojun> | 2001-10-04 09:18:45 +0000 |
commit | 459451d636e2be05419748a609b56435942f1532 (patch) | |
tree | c4ae67df98e3f58d4c23159975d0e467fbe17a75 /print-ipx.c | |
parent | 0cf1f1d9e6a3753496939b00f69f5a29ab4fc7ed (diff) | |
download | tcpdump-459451d636e2be05419748a609b56435942f1532.tar.gz |
disable smb printing until we have boundary checks in *smb*.c (there's almost
no boundary check).
Diffstat (limited to 'print-ipx.c')
-rw-r--r-- | print-ipx.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/print-ipx.c b/print-ipx.c index 413d6ba9..7ec9b1b3 100644 --- a/print-ipx.c +++ b/print-ipx.c @@ -24,7 +24,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.30 2001-01-15 03:23:59 guy Exp $"; + "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.31 2001-10-04 09:18:46 itojun Exp $"; #endif #ifdef HAVE_CONFIG_H @@ -108,14 +108,18 @@ ipx_decode(const struct ipxHdr *ipx, const u_char *datap, u_int length) break; case IPX_SKT_NETBIOS: (void)printf(" ipx-netbios %d", length); +#if 0 ipx_netbios_print(datap, length); +#endif break; case IPX_SKT_DIAGNOSTICS: (void)printf(" ipx-diags %d", length); break; case IPX_SKT_NWLINK_DGM: (void)printf(" ipx-nwlink-dgm %d", length); +#if 0 ipx_netbios_print(datap, length); +#endif break; case IPX_SKT_EIGRP: (void)printf(" ipx-eigrp %d", length); |