ws80211: Replace some whitespaces with tabs
authorMikael Kanstrup <mikael.kanstrup@gmail.com>
Mon, 15 Feb 2016 10:24:00 +0000 (11:24 +0100)
committerAnders Broman <a.broman58@gmail.com>
Tue, 16 Feb 2016 09:58:47 +0000 (09:58 +0000)
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>
caputils/ws80211_utils.h

index da4ed420657cf2dd6e65d6b895f33a028f7b7064..d111030e25074b092406bb47dfab3a4945d9add9 100644 (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.