diff options
author | Richard Sharpe <sharpe@ns.aus.com> | 2000-12-29 01:27:35 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@ns.aus.com> | 2000-12-29 01:27:35 +0000 |
commit | b226f348ad299ca3403a3aa0b8d54d896974fb43 (patch) | |
tree | a9aa38898eca2bf200ba6145e097e7d4b83a5f08 /packet-x25.c | |
parent | d481cd7b3fb4399a5da1e7401ce6d6de3b87f206 (diff) | |
download | wireshark-b226f348ad299ca3403a3aa0b8d54d896974fb43.tar.gz wireshark-b226f348ad299ca3403a3aa0b8d54d896974fb43.tar.bz2 wireshark-b226f348ad299ca3403a3aa0b8d54d896974fb43.zip |
Modify X.25 dissector to accept a search string of x.25 and ex.25, not x25 and ex25.
svn path=/trunk/; revision=2797
Diffstat (limited to 'packet-x25.c')
-rw-r--r-- | packet-x25.c | 6 |
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)); |