summaryrefslogtreecommitdiff
path: root/print-ether.c
diff options
context:
space:
mode:
authorhannes <hannes>2007-07-23 09:01:09 +0000
committerhannes <hannes>2007-07-23 09:01:09 +0000
commit9d84f80c5f9b5b29399f3231eb16de7974a56f64 (patch)
treef577a715235ce618b844dcf2ffd210a8f8edffb4 /print-ether.c
parent4bef1cedceaa088f405e76fff7d5ecae39ab905d (diff)
downloadtcpdump-9d84f80c5f9b5b29399f3231eb16de7974a56f64.tar.gz
change 802.1ag pre-standard codepoint to standard codepoint
Diffstat (limited to 'print-ether.c')
-rw-r--r--print-ether.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/print-ether.c b/print-ether.c
index 441cee0f..e54c9d4e 100644
--- a/print-ether.c
+++ b/print-ether.c
@@ -20,7 +20,7 @@
*/
#ifndef lint
static const char rcsid[] _U_ =
- "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.103 2006-10-12 10:26:12 hannes Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.104 2007-07-23 09:01:09 hannes Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -74,6 +74,7 @@ const struct tok ethertype_values[] = {
{ ETHERTYPE_LOOPBACK, "Loopback" },
{ ETHERTYPE_ISO, "OSI" },
{ ETHERTYPE_GRE_ISO, "GRE-OSI" },
+ { ETHERTYPE_CFM_OLD, "CFM (old)" },
{ ETHERTYPE_CFM, "CFM" },
{ 0, NULL}
};
@@ -309,6 +310,7 @@ ether_encap_print(u_short ether_type, const u_char *p,
return (1);
case ETHERTYPE_CFM:
+ case ETHERTYPE_CFM_OLD:
cfm_print(p, length);
return (1);