diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-10-17 01:29:30 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-10-17 01:29:30 +0000 |
commit | 9fb669df430da818f8c429724d1ef1d5152e0974 (patch) | |
tree | 045f73f3a1605643c29bd182f74b3537638bbcf5 /packet-lmp.c | |
parent | b99f379f55f15ef3ac8ee73439531a1f77f394a3 (diff) | |
download | wireshark-9fb669df430da818f8c429724d1ef1d5152e0974.tar.gz wireshark-9fb669df430da818f8c429724d1ef1d5152e0974.tar.bz2 wireshark-9fb669df430da818f8c429724d1ef1d5152e0974.zip |
The Boolean field for EndVerifyAck messages was missing, causing a crash
if such a message (or something that happened to look enough like such a
message) was ever seen.
svn path=/trunk/; revision=6441
Diffstat (limited to 'packet-lmp.c')
-rw-r--r-- | packet-lmp.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packet-lmp.c b/packet-lmp.c index c4ac15a10e..ae4c5e05c9 100644 --- a/packet-lmp.c +++ b/packet-lmp.c @@ -3,7 +3,7 @@ * * (c) Copyright Ashok Narayanan <ashokn@cisco.com> * - * $Id: packet-lmp.c,v 1.12 2002/08/28 21:00:20 jmayer Exp $ + * $Id: packet-lmp.c,v 1.13 2002/10/17 01:29:30 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -364,6 +364,10 @@ static hf_register_info lmpf_info[] = { { "EndVerify Message", "lmp.msg.endverify", FT_BOOLEAN, BASE_NONE, NULL, 0x0, "", HFILL }}, + {&lmp_filter[LMPF_MSG_END_VERIFY_ACK], + { "EndVerifyAck Message", "lmp.msg.endverifyack", FT_BOOLEAN, BASE_NONE, NULL, 0x0, + "", HFILL }}, + {&lmp_filter[LMPF_MSG_TEST], { "Test Message", "lmp.msg.test", FT_BOOLEAN, BASE_NONE, NULL, 0x0, "", HFILL }}, |