aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ppi.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-02-14 22:38:12 +0000
committerGuy Harris <guy@alum.mit.edu>2013-02-14 22:38:12 +0000
commitb8179ab57bb12ee123987e46eebdd8ed6af63567 (patch)
tree4043f8a71e81d2f0060878dd60ffe9d3f91e980c /epan/dissectors/packet-ppi.c
parentbf4e129f5f74ab33258a15b2c8809f258a148455 (diff)
Show the signal strength as dBm, as that's what it is in the PPI header.
svn path=/trunk/; revision=47662
Diffstat (limited to 'epan/dissectors/packet-ppi.c')
-rw-r--r--epan/dissectors/packet-ppi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ppi.c b/epan/dissectors/packet-ppi.c
index f66356475b..9506619516 100644
--- a/epan/dissectors/packet-ppi.c
+++ b/epan/dissectors/packet-ppi.c
@@ -536,7 +536,7 @@ dissect_80211_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int of
ptvcursor_add(csr, hf_80211_common_fhss_pattern, 1, ENC_LITTLE_ENDIAN);
if (check_col(pinfo->cinfo, COL_RSSI)) {
- col_add_fstr(pinfo->cinfo, COL_RSSI, "%d",
+ col_add_fstr(pinfo->cinfo, COL_RSSI, "%d dBm",
(gint8) tvb_get_guint8(tvb, ptvcursor_current_offset(csr)));
}
ptvcursor_add_invalid_check(csr, hf_80211_common_dbm_antsignal, 1, 0x80); /* -128 */