diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-11-06 21:49:34 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-11-06 21:49:34 +0000 |
commit | 8ee4a65f7690f5563275f4b1718971af2e5faca8 (patch) | |
tree | 1772ded2ad88a8ad9de7bf9298526f61b4cff663 /packet-ieee80211.c | |
parent | b3e0a56390fdce140228692d9ad3389bfa71c876 (diff) | |
download | wireshark-8ee4a65f7690f5563275f4b1718971af2e5faca8.tar.gz wireshark-8ee4a65f7690f5563275f4b1718971af2e5faca8.tar.bz2 wireshark-8ee4a65f7690f5563275f4b1718971af2e5faca8.zip |
From Solomon Peachy: support for new "wlancap" 802.11 extra-information
header.
Add overflow checks to "BYTES_ARE_IN_FRAME()", and cast all arguments to
unsigned values (negative values should never be passed) to squelch
compiler warnings.
svn path=/trunk/; revision=6567
Diffstat (limited to 'packet-ieee80211.c')
-rw-r--r-- | packet-ieee80211.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ieee80211.c b/packet-ieee80211.c index 619c89bde3..e8b0390e61 100644 --- a/packet-ieee80211.c +++ b/packet-ieee80211.c @@ -3,7 +3,7 @@ * Copyright 2000, Axis Communications AB * Inquiries/bugreports should be sent to Johan.Jorgensen@axis.com * - * $Id: packet-ieee80211.c,v 1.77 2002/10/31 20:46:00 guy Exp $ + * $Id: packet-ieee80211.c,v 1.78 2002/11/06 21:49:29 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1873,7 +1873,7 @@ wlan_defragment_init(void) } void -proto_register_wlan (void) +proto_register_ieee80211 (void) { static const value_string frame_type[] = { {MGT_FRAME, "Management frame"}, @@ -2370,7 +2370,7 @@ proto_register_wlan (void) } void -proto_reg_handoff_wlan(void) +proto_reg_handoff_ieee80211(void) { dissector_handle_t ieee80211_handle; dissector_handle_t ieee80211_radio_handle; |