hostapd: Change drv_flags from unsigned int to u64
authorYanbo Li <yanbol@qti.qualcomm.com>
Sun, 2 Nov 2014 09:46:35 +0000 (17:46 +0800)
committerJouni Malinen <j@w1.fi>
Fri, 14 Nov 2014 10:55:53 +0000 (12:55 +0200)
Some flag already using a bit larger than 32, so extend the hostapd
drv_flags type similarly to the earlier wpa_supplicant change to get the
full flag content.

Signed-off-by: Yanbo Li <yanbol@qti.qualcomm.com>
src/ap/hostapd.h

index 4567036..49f0ddf 100644 (file)
@@ -308,7 +308,7 @@ struct hostapd_iface {
        struct ap_info *ap_list; /* AP info list head */
        struct ap_info *ap_hash[STA_HASH_SIZE];
 
-       unsigned int drv_flags;
+       u64 drv_flags;
 
        /* SMPS modes supported by the driver (WPA_DRIVER_SMPS_MODE_*) */
        unsigned int smps_modes;