aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-07-12 17:06:09 +0000
committerJörg Mayer <jmayer@loplof.de>2005-07-12 17:06:09 +0000
commit9806180700095cbbf3a0b450d06b998a83a40bd1 (patch)
tree0a7f992af3f7723615c79e07881240d697fdc96e /epan
parente7c4db81c1b94c06365c10450f41f1415a8f8a3f (diff)
Add value for FCS (no decoding).
Fix a signedness warning. svn path=/trunk/; revision=14905
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-radiotap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-radiotap.c b/epan/dissectors/packet-radiotap.c
index 608fdd808b..b84f0dc847 100644
--- a/epan/dissectors/packet-radiotap.c
+++ b/epan/dissectors/packet-radiotap.c
@@ -72,6 +72,7 @@ enum ieee80211_radiotap_type {
IEEE80211_RADIOTAP_ANTENNA = 11,
IEEE80211_RADIOTAP_DB_ANTSIGNAL = 12,
IEEE80211_RADIOTAP_DB_ANTNOISE = 13,
+ IEEE80211_RADIOTAP_FCS = 14,
IEEE80211_RADIOTAP_EXT = 31
};
@@ -287,7 +288,7 @@ dissect_radiotap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
offset+=sizeof(struct ieee80211_radiotap_header);
if(check_col(pinfo->cinfo, COL_INFO))
- col_add_fstr(pinfo->cinfo, COL_INFO, "Radiotap Capture v%x, Length %d",
+ col_add_fstr(pinfo->cinfo, COL_INFO, "Radiotap Capture v%x, Length %u",
version, length);
/* Dissect the packet */