Bucket Leak Rate decoded incorrectly as bytes instead of bits

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2849

svn path=/trunk/; revision=26147
This commit is contained in:
Anders Broman 2008-09-06 11:45:08 +00:00
parent e8dedf19b4
commit d1ea868c27
1 changed files with 1 additions and 1 deletions

View File

@ -1530,7 +1530,7 @@ bssgp_pi_append_queuing_delay(proto_item *pi, tvbuff_t *tvb, int offset) {
static void
bssgp_pi_append_bucket_leak_rate(proto_item *pi, tvbuff_t *tvb, int offset) {
guint16 value = tvb_get_ntohs(tvb, offset);
proto_item_append_text(pi, ": %u bytes", value * 100);
proto_item_append_text(pi, ": %u bits", value * 100);
}
static void