mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
17 lines
431 B
Diff
17 lines
431 B
Diff
diff --git a/drivers/net/wireless/bcmdhd/wl_android.c b/drivers/net/wireless/bcmdhd/wl_android.c
|
|
index c67c975..35fa6cb 100644
|
|
--- a/drivers/net/wireless/bcmdhd/wl_android.c
|
|
+++ b/drivers/net/wireless/bcmdhd/wl_android.c
|
|
@@ -1288,6 +1288,11 @@
|
|
goto exit;
|
|
}
|
|
|
|
+ if (!capable(CAP_NET_ADMIN)) {
|
|
+ ret = -EPERM;
|
|
+ goto exit;
|
|
+ }
|
|
+
|
|
#ifdef CONFIG_COMPAT
|
|
if (is_compat_task()) {
|
|
compat_android_wifi_priv_cmd compat_priv_cmd;
|