diff options
author | Gerald Combs <gerald@wireshark.org> | 2004-12-01 23:18:20 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2004-12-01 23:18:20 +0000 |
commit | 594c47b14d5c46ab3271918749f1465e2e281631 (patch) | |
tree | a122d45ceb23f7ce74c6f3bed8b3490f97fcf1ca /epan/dissectors/packet-fr.c | |
parent | e29f2ac105d8ffba68849794adc21c7eb8c489ba (diff) | |
download | wireshark-594c47b14d5c46ab3271918749f1465e2e281631.tar.gz wireshark-594c47b14d5c46ab3271918749f1465e2e281631.tar.bz2 wireshark-594c47b14d5c46ab3271918749f1465e2e281631.zip |
Replace GRE_FR with ETHERTYPE_RAW_FR.
svn path=/trunk/; revision=12649
Diffstat (limited to 'epan/dissectors/packet-fr.c')
-rw-r--r-- | epan/dissectors/packet-fr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-fr.c b/epan/dissectors/packet-fr.c index 3868faa886..76477ef75f 100644 --- a/epan/dissectors/packet-fr.c +++ b/epan/dissectors/packet-fr.c @@ -734,7 +734,7 @@ void proto_reg_handoff_fr(void) dissector_handle_t fr_handle, fr_phdr_handle; fr_handle = create_dissector_handle(dissect_fr, proto_fr); - dissector_add("gre.proto", GRE_FR, fr_handle); + dissector_add("gre.proto", ETHERTYPE_RAW_FR, fr_handle); dissector_add("wtap_encap", WTAP_ENCAP_FRELAY, fr_handle); fr_phdr_handle = create_dissector_handle(dissect_fr_phdr, proto_fr); |