aboutsummaryrefslogtreecommitdiffstats
path: root/packet-prism.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-11-30 07:14:22 +0000
committerGuy Harris <guy@alum.mit.edu>2001-11-30 07:14:22 +0000
commita7bb49b0d967c759dccab991e3ab049495a39dfc (patch)
treed2124c81f2ca7a0d8f1f849a1362bc8261966b4b /packet-prism.c
parent9161ba8e7f3fa9d8c59f5f7719625689a9867d6f (diff)
Add support for LocalTalk Link Access Protocol.
Rename WTAP_ENCAP_PRISM to WTAP_ENCAP_PRISM_HEADER, to match DLT_PRISM_HEADER. Add in missing capture support for WTAP_ENCAP_PRISM_HEADER when capturing with "pcap_open_live()" rather than reading the capture from a pipe. svn path=/trunk/; revision=4299
Diffstat (limited to 'packet-prism.c')
-rw-r--r--packet-prism.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-prism.c b/packet-prism.c
index 6435d8535d..3e478d0411 100644
--- a/packet-prism.c
+++ b/packet-prism.c
@@ -9,7 +9,7 @@
*
* By Tim Newsham
*
- * $Id: packet-prism.c,v 1.2 2001/11/28 19:59:24 guy Exp $
+ * $Id: packet-prism.c,v 1.3 2001/11/30 07:14:20 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -205,5 +205,5 @@ proto_reg_handoff_prism(void)
/* handle for 802.11 dissector */
ieee80211_handle = find_dissector("wlan");
- dissector_add("wtap_encap", WTAP_ENCAP_PRISM, dissect_prism, proto_prism);
+ dissector_add("wtap_encap", WTAP_ENCAP_PRISM_HEADER, dissect_prism, proto_prism);
}