diff options
author | Martin Mathieson <martin.r.mathieson@googlemail.com> | 2006-11-10 12:06:10 +0000 |
---|---|---|
committer | Martin Mathieson <martin.r.mathieson@googlemail.com> | 2006-11-10 12:06:10 +0000 |
commit | 82203cdb6c31936468d1db3ca58b60dfd0534896 (patch) | |
tree | 125a2944f61f621b9d0a34f9d423a0a4fc718906 /epan/dissectors/packet-umts_fp.c | |
parent | 9cc8175f5f35632cc897a002766b8bbd34e427b2 (diff) | |
download | wireshark-82203cdb6c31936468d1db3ca58b60dfd0534896.tar.gz wireshark-82203cdb6c31936468d1db3ca58b60dfd0534896.tar.bz2 wireshark-82203cdb6c31936468d1db3ca58b60dfd0534896.zip |
Fix test
svn path=/trunk/; revision=19873
Diffstat (limited to 'epan/dissectors/packet-umts_fp.c')
-rw-r--r-- | epan/dissectors/packet-umts_fp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c index 5612fdd707..74bb47c15d 100644 --- a/epan/dissectors/packet-umts_fp.c +++ b/epan/dissectors/packet-umts_fp.c @@ -765,7 +765,7 @@ void dissect_hsdpa_capacity_allocation(packet_info *pinfo, proto_tree *tree, } /* Calculated and show effective rate enabled */ - if ((credits == 0) || (repetition_period == 0)) + if ((credits == 2047) || (repetition_period == 0)) { rate_ti = proto_tree_add_item(tree, hf_fp_hsdsch_unlimited_rate, tvb, 0, 0, FALSE); } |