Commit 9d40934e authored by Jussi Kivilinna's avatar Jussi Kivilinna Committed by John W. Linville

rndis_wlan: add missing padding to struct rndis_80211_remove_key

OID_802_11_REMOVE_KEY failed with invalid length error, add missing padding to
structure fix this.
Signed-off-by: default avatarJussi Kivilinna <jussi.kivilinna@mbnet.fi>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 030645ac
...@@ -327,6 +327,7 @@ struct ndis_80211_remove_key { ...@@ -327,6 +327,7 @@ struct ndis_80211_remove_key {
__le32 size; __le32 size;
__le32 index; __le32 index;
u8 bssid[6]; u8 bssid[6];
u8 padding[2];
} __attribute__((packed)); } __attribute__((packed));
struct ndis_config_param { struct ndis_config_param {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment