aboutsummaryrefslogtreecommitdiffstats
path: root/caputils
diff options
context:
space:
mode:
authorMikael Kanstrup <mikael.kanstrup@gmail.com>2016-02-15 11:24:00 +0100
committerAnders Broman <a.broman58@gmail.com>2016-02-16 09:58:47 +0000
commit9c0b5a9538a0686c9541774dbaa75d826d23770a (patch)
tree2c56ddcad8f09af044270c4919bbab42bb4baeba /caputils
parentc97a97aa9e56dd777791bd19b8829e8e87b8cadc (diff)
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>
Diffstat (limited to 'caputils')
-rw-r--r--caputils/ws80211_utils.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/caputils/ws80211_utils.h b/caputils/ws80211_utils.h
index da4ed42065..d111030e25 100644
--- a/caputils/ws80211_utils.h
+++ b/caputils/ws80211_utils.h
@@ -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.