Deleted Added
full compact
24c24
< * $FreeBSD: head/contrib/tcpdump/print-llc.c 127675 2004-03-31 14:57:24Z bms $
---
> * $FreeBSD: head/contrib/tcpdump/print-llc.c 146778 2005-05-29 19:09:28Z sam $
29c29
< "@(#) $Header: /tcpdump/master/tcpdump/print-llc.c,v 1.53.2.3 2003/12/29 22:33:18 hannes Exp $";
---
> "@(#) $Header: /tcpdump/master/tcpdump/print-llc.c,v 1.61 2005/04/06 21:32:41 mcr Exp $";
46a47
> #include "oui.h"
99c100
< printf("LLC, dsap %s (0x%02x), ssap %s (0x%02x), cmd 0x%02x, ",
---
> printf("LLC, dsap %s (0x%02x), ssap %s (0x%02x), cmd 0x%02x: ",
121,123c122,127
< printf("(NOV-802.3) ");
< ipx_print(p, length);
< return (1);
---
>
> if (eflag)
> printf("IPX-802.3: ");
>
> ipx_print(p, length);
> return (1);
132c136
< ip_print(p+4, length-4);
---
> ip_print(gndo, p+4, length-4);
220a225,232
>
> if (eflag)
> (void)printf("oui %s (0x%06x), ethertype %s (0x%04x): ",
> tok2str(oui_values,"Unknown",orgcode),
> orgcode,
> tok2str(ethertype_values,"Unknown", et),
> et);
>
313d324
< (void)printf(" len=%d", length);
431a443,450
>
>
> /*
> * Local Variables:
> * c-style: whitesmith
> * c-basic-offset: 8
> * End:
> */