aboutsummaryrefslogtreecommitdiffstats
path: root/packet-h245.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-10-10 10:54:37 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-10-10 10:54:37 +0000
commit594223536aca109a48225b64717c42ece9449abc (patch)
tree3e0421c09b528441bac6d07b0217f7029acd0375 /packet-h245.c
parent7db1cbf4fca004d302245ef1f9d1f7d26348a4c3 (diff)
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
Diffstat (limited to 'packet-h245.c')
-rw-r--r--packet-h245.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-h245.c b/packet-h245.c
index 25c128974b..33612f7043 100644
--- a/packet-h245.c
+++ b/packet-h245.c
@@ -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;
}