From: Yanbo Li Date: Sun, 2 Nov 2014 09:46:35 +0000 (+0800) Subject: hostapd: Change drv_flags from unsigned int to u64 X-Git-Tag: hostap_2_4~1163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3a8ad44055d5b453c7f080958137eb718a60b6e;p=thirdparty%2Fhostap.git hostapd: Change drv_flags from unsigned int to u64 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 --- diff --git a/src/ap/hostapd.h b/src/ap/hostapd.h index 4567036cb..49f0ddf54 100644 --- a/src/ap/hostapd.h +++ b/src/ap/hostapd.h @@ -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;