ws80211: Replace some whitespaces with tabs

File had both whitespaces and tabs for indentation. Replace
whitespace indentation with tabs. This is the same indentation
mode as ws80211.c file uses.

Change-Id: I46bbd675f5089eb502b489fdfd70f30510bc95ef
Reviewed-on: https://code.wireshark.org/review/13963
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Mikael Kanstrup 2016-02-15 11:24:00 +01:00 committed by Anders Broman
parent c97a97aa9e
commit 9c0b5a9538
1 changed files with 8 additions and 8 deletions

View File

@ -41,25 +41,25 @@ enum ws80211_channel_type {
/* XXX This doesn't match AirpcapValidationType. Should it? */
enum ws80211_fcs_validation {
WS80211_FCS_ALL,
WS80211_FCS_VALID,
WS80211_FCS_INVALID
WS80211_FCS_ALL,
WS80211_FCS_VALID,
WS80211_FCS_INVALID
};
struct ws80211_interface
{
char *ifname;
gboolean can_set_freq;
gboolean can_check_fcs;
GArray *frequencies; /* Array of guint32? */
gboolean can_check_fcs;
GArray *frequencies; /* Array of guint32? */
int channel_types; /* Union for all bands */
int cap_monitor;
int cap_monitor;
};
struct ws80211_iface_info {
int current_freq;
int current_freq;
enum ws80211_channel_type current_chan_type;
enum ws80211_fcs_validation current_fcs_validation;
enum ws80211_fcs_validation current_fcs_validation;
};
/** Initialize the 802.11 environment.