aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee802154.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-06-24 14:30:00 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-06-24 14:30:00 +0000
commit16cd5cb65356dbf1eff99a11c22b48f4bd0af2de (patch)
tree75a93911e28c379078f5aa6bbdf045d70c85d096 /epan/dissectors/packet-ieee802154.c
parent8765ad273de7b0fe301fbdb60fee7bbcd141e625 (diff)
Display RSSI in dB instead of dBm. Fixes the last remaining issue reported in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4507
#BACKPORT(1.10,1.8) svn path=/trunk/; revision=50125
Diffstat (limited to 'epan/dissectors/packet-ieee802154.c')
-rw-r--r--epan/dissectors/packet-ieee802154.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ieee802154.c b/epan/dissectors/packet-ieee802154.c
index d64bb2dcb5..d357b6bd98 100644
--- a/epan/dissectors/packet-ieee802154.c
+++ b/epan/dissectors/packet-ieee802154.c
@@ -1206,7 +1206,7 @@ dissect_ieee802154_fcs:
field_tree = proto_item_add_subtree(ti, ett_ieee802154_fcs);
/* Display FCS contents. */
ti = proto_tree_add_int(field_tree, hf_ieee802154_rssi, tvb, offset++, 1, (gint8) (fcs & IEEE802154_CC24xx_RSSI));
- proto_item_append_text(ti, " dBm"); /* Displaying Units */
+ proto_item_append_text(ti, " dB"); /* Displaying Units */
proto_tree_add_boolean(field_tree, hf_ieee802154_fcs_ok, tvb, offset, 1, (gboolean) (fcs & IEEE802154_CC24xx_CRC_OK));
proto_tree_add_uint(field_tree, hf_ieee802154_correlation, tvb, offset, 1, (guint8) ((fcs & IEEE802154_CC24xx_CORRELATION) >> 8));
}