From Martin Regner, bugfix for H245.

The restricted character string for signalType is 1 character,  not 1 to 128 characters.

svn path=/trunk/; revision=8666
This commit is contained in:
Ronnie Sahlberg 2003-10-10 10:54:37 +00:00
parent 7db1cbf4fc
commit 594223536a
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
*
* Maintained by Andreas Sikkema (andreas.sikkema@philips.com)
*
* $Id: packet-h245.c,v 1.39 2003/10/09 22:35:07 guy Exp $
* $Id: packet-h245.c,v 1.40 2003/10/10 10:54:37 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -17980,7 +17980,7 @@ dissect_h245_FunctionNotUnderstood(tvbuff_t *tvb, int offset, packet_info *pinfo
static int
dissect_h245_signalType(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
{
offset=dissect_per_restricted_character_string(tvb, offset, pinfo, tree, hf_h245_signalType, 1, 128, "!#*0123456789ABCD", 17);
offset=dissect_per_restricted_character_string(tvb, offset, pinfo, tree, hf_h245_signalType, 1, 1, "!#*0123456789ABCD", 17);
return offset;
}