X-Git-Url: http://git.samba.org/samba.git/?p=obnox%2Fwireshark%2Fwip.git;a=blobdiff_plain;f=ethertype.c;fp=ethertype.c;h=a315499eec0634726ba52633949fb76793043085;hp=f1e2b2d917073b82ef961277cd21b7019e641a02;hb=9dab31929447931f68d1370a6de3b316f082da2a;hpb=aa545186ee97cae7380138ca4eab48857baed967;ds=sidebyside diff --git a/ethertype.c b/ethertype.c index f1e2b2d917..a315499eec 100644 --- a/ethertype.c +++ b/ethertype.c @@ -2,7 +2,7 @@ * Routines for calling the right protocol for the ethertype. * This is called by both packet-eth.c (Ethernet II) and packet-llc.c (SNAP) * - * $Id: ethertype.c,v 1.20 1999/12/05 02:32:41 guy Exp $ + * $Id: ethertype.c,v 1.21 1999/12/05 20:05:44 nneul Exp $ * * Gilbert Ramirez * @@ -66,6 +66,9 @@ capture_ethertype(guint16 etype, int offset, case ETHERTYPE_IPX: capture_ipx(pd, offset, cap_len, ld); break; + case ETHERTYPE_VLAN: + capture_vlan(pd, offset, cap_len, ld); + break; default: ld->other++; break;