aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-29 09:56:11 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-01-29 09:56:11 +0000
commitbcf53a867263b51421c9056b2bd9869484e1c74e (patch)
treee0117bceaca7e8ebe0c50fc146c5912e33233e18 /epan/dissectors/packet-ieee80211.c
parent89cebba56771e0c536603be32516227f2106be28 (diff)
SSI dBm signal is signed.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24218 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ieee80211.c')
-rw-r--r--epan/dissectors/packet-ieee80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index 9ca9b5b7ad..c43b4068e9 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -7429,7 +7429,7 @@ dissect_wlancap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
case SSI_DBM:
/* dBm */
if (check_col(pinfo->cinfo, COL_RSSI))
- col_add_fstr(pinfo->cinfo, COL_RSSI, "%u dBm", tvb_get_ntohl(tvb, offset));
+ col_add_fstr(pinfo->cinfo, COL_RSSI, "%d dBm", tvb_get_ntohl(tvb, offset));
if (tree)
proto_tree_add_item(wlan_tree, hf_dbm_antsignal, tvb, offset, 4, FALSE);
break;