aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ipx.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-01-15 23:00:07 +0000
committerEvan Huus <eapache@gmail.com>2014-01-15 23:00:07 +0000
commit622d9cb953c3c177dabc9baea451f60ccd750263 (patch)
treeff6cdbfdc606cd4c1f63bd51e7e3459aeec6c383 /epan/dissectors/packet-ipx.c
parentefbecb3e9a29f63191edadc7507d86d98ea15937 (diff)
Add modelines and fix one indentation issue.
svn path=/trunk/; revision=54821
Diffstat (limited to 'epan/dissectors/packet-ipx.c')
-rw-r--r--epan/dissectors/packet-ipx.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ipx.c b/epan/dissectors/packet-ipx.c
index f13aa764dd..105dd94740 100644
--- a/epan/dissectors/packet-ipx.c
+++ b/epan/dissectors/packet-ipx.c
@@ -1493,7 +1493,7 @@ proto_reg_handoff_ipx(void)
ipx_handle = find_dissector("ipx");
dissector_add_uint("udp.port", UDP_PORT_IPX, ipx_handle);
dissector_add_uint("ethertype", ETHERTYPE_IPX, ipx_handle);
- dissector_add_uint("chdlc.protocol", ETHERTYPE_IPX, ipx_handle);
+ dissector_add_uint("chdlc.protocol", ETHERTYPE_IPX, ipx_handle);
dissector_add_uint("ppp.protocol", PPP_IPX, ipx_handle);
dissector_add_uint("llc.dsap", SAP_NETWARE1, ipx_handle);
dissector_add_uint("llc.dsap", SAP_NETWARE2, ipx_handle);
@@ -1523,3 +1523,16 @@ proto_reg_handoff_ipx(void)
data_handle = find_dissector("data");
}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=false:
+ */