diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2004-06-24 05:05:42 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2004-06-24 05:05:42 +0000 |
commit | a87a416a7f92aaa03753bb7e7fcfdcc5c7868a88 (patch) | |
tree | ed074584825959f0c405cd515c4bd9ddea3b22b6 | |
parent | 2cfc02dca76b2d1a33fc7c3063a9ab7d0aba5ad9 (diff) | |
download | wireshark-a87a416a7f92aaa03753bb7e7fcfdcc5c7868a88.tar.gz wireshark-a87a416a7f92aaa03753bb7e7fcfdcc5c7868a88.tar.bz2 wireshark-a87a416a7f92aaa03753bb7e7fcfdcc5c7868a88.zip |
The hf field we pass to H235_AuthenticationMechanism is a FT_UINT32 and not a FT_NONE
this finally allows ethereal to successfulkly dissect the problem h225.cap capture properly.
svn path=/trunk/; revision=11222
-rw-r--r-- | packet-h225.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-h225.c b/packet-h225.c index 5949ce360c..7bcfbc3b16 100644 --- a/packet-h225.c +++ b/packet-h225.c @@ -4,7 +4,7 @@ * * Maintained by Andreas Sikkema (h323@ramdyne.nl) * - * $Id: packet-h225.c,v 1.44 2004/06/24 04:51:12 sahlberg Exp $ + * $Id: packet-h225.c,v 1.45 2004/06/24 05:05:42 sahlberg Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -10210,11 +10210,11 @@ proto_register_h225(void) "GatekeeperRequest/authenticationCapability", HFILL }}, { &hf_h225_authenticationCapability_item, { "authenticationCapability", "h225.authenticationCapability_item", - FT_NONE, BASE_NONE, NULL, 0, + FT_UINT32, BASE_DEC, NULL, 0, "GatekeeperRequest/authenticationCapability/_item", HFILL }}, { &hf_h225_authenticationMode, { "authenticationMode", "h225.authenticationMode", - FT_NONE, BASE_NONE, NULL, 0, + FT_UINT32, BASE_DEC, NULL, 0, "GatekeeperConfirm/authenticationMode", HFILL }}, { &hf_h225_alertingTime, { "alertingTime", "h225.alertingTime", |