diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-03-29 08:05:07 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-03-29 08:05:07 +0000 |
commit | 41904dc30328d7d2bc432f744a0c312050bbc457 (patch) | |
tree | 7d2124066541ba6d1d3e4893f01a5281fd154fad /packet-fr.c | |
parent | d11b3119921374357378aa80170f9185ef8afa19 (diff) | |
download | wireshark-41904dc30328d7d2bc432f744a0c312050bbc457.tar.gz wireshark-41904dc30328d7d2bc432f744a0c312050bbc457.tar.bz2 wireshark-41904dc30328d7d2bc432f744a0c312050bbc457.zip |
Add WCP to the list of Ethernet types in "etype_vals[]", and add
"compressed" to the list of NLPIDs in "nlpid_vals[]".
Use "nlpid_vals" for the Frame Relay NLPID field.
svn path=/trunk/; revision=3206
Diffstat (limited to 'packet-fr.c')
-rw-r--r-- | packet-fr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-fr.c b/packet-fr.c index 113ad354fc..33a011ee3d 100644 --- a/packet-fr.c +++ b/packet-fr.c @@ -3,7 +3,7 @@ * * Copyright 2001, Paul Ionescu <paul@acorp.ro> * - * $Id: packet-fr.c,v 1.12 2001/03/23 23:56:03 guy Exp $ + * $Id: packet-fr.c,v 1.13 2001/03/29 08:05:06 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -274,7 +274,7 @@ void proto_register_fr(void) FRELAY_EA, "Extended Address" }}, { &hf_fr_nlpid, { "NLPID", "fr.nlpid", FT_UINT8, BASE_HEX, - NULL, 0x0, "FrameRelay Encapsulated Protocol NLPID" }}, + VALS(nlpid_vals), 0x0, "FrameRelay Encapsulated Protocol NLPID" }}, { &hf_fr_oui, { "Organization Code", "fr.snap.oui", FT_UINT24, BASE_HEX, VALS(oui_vals), 0x0, ""}}, |