summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ranap.c
diff options
context:
space:
mode:
authorAndersBroman <anders.broman@ericsson.com>2014-03-27 15:07:34 +0100
committerAnders Broman <a.broman58@gmail.com>2014-03-27 14:09:23 +0000
commitd1bef2912590fc233637c4d0bf76a1b7194854e0 (patch)
tree623c215a796f051f950355a41d9d90f152bf332c /epan/dissectors/packet-ranap.c
parent418c3a7f6296b9269073ada6dd2f981fcdf29ef4 (diff)
downloadwireshark-d1bef2912590fc233637c4d0bf76a1b7194854e0.tar.gz
Regenerate the dissector with the latest template.
Change-Id: Iefdd7122537108c37e71650ad2674418109d2f1b Reviewed-on: https://code.wireshark.org/review/845 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-ranap.c')
-rw-r--r--epan/dissectors/packet-ranap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ranap.c b/epan/dissectors/packet-ranap.c
index dd0d173deb..543d6c567d 100644
--- a/epan/dissectors/packet-ranap.c
+++ b/epan/dissectors/packet-ranap.c
@@ -13181,7 +13181,7 @@ dissect_ranap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
}
-#define RANAP_MSG_MIN_LENGTH 8
+#define RANAP_MSG_MIN_LENGTH 7
static gboolean
dissect_sccp_ranap_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{
@@ -13220,7 +13220,7 @@ dissect_sccp_ranap_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, voi
*
*/
word = tvb_get_ntohs(tvb,5);
- if(word > 0x2ff){
+ if(word > 0x1ff){
return FALSE;
}
dissect_ranap(tvb, pinfo, tree);