aboutsummaryrefslogtreecommitdiffstats
path: root/packet-x25.c
diff options
context:
space:
mode:
authorsharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2000-12-29 01:27:35 +0000
committersharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2000-12-29 01:27:35 +0000
commit699db8b95cd75cc7d3e5888577dd95a62e1787a8 (patch)
treea9aa38898eca2bf200ba6145e097e7d4b83a5f08 /packet-x25.c
parent229b0badd852ff54663ebd4bc1eb0853ff7c6558 (diff)
Modify X.25 dissector to accept a search string of x.25 and ex.25, not x25 and ex25.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2797 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-x25.c')
-rw-r--r--packet-x25.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-x25.c b/packet-x25.c
index 154ca3a821..49cea19575 100644
--- a/packet-x25.c
+++ b/packet-x25.c
@@ -2,7 +2,7 @@
* Routines for x25 packet disassembly
* Olivier Abad <oabad@cybercable.fr>
*
- * $Id: packet-x25.c,v 1.40 2000/11/27 06:23:42 oabad Exp $
+ * $Id: packet-x25.c,v 1.41 2000/12/29 01:27:35 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -2018,8 +2018,8 @@ proto_register_x25(void)
&ett_x25_fac_priority
};
- proto_x25 = proto_register_protocol ("X.25", "x25");
- proto_ex25 = proto_register_protocol ("Extended X.25 (modulo 128)", "ex25");
+ proto_x25 = proto_register_protocol ("X.25", "x.25");
+ proto_ex25 = proto_register_protocol ("Extended X.25 (modulo 128)", "ex.25");
proto_register_field_array (proto_x25, hf8, array_length(hf8));
proto_register_field_array (proto_ex25, hf128, array_length(hf128));
proto_register_subtree_array(ett, array_length(ett));