am 4c609e96: Remove CAP_NET_RAW from adb

* commit '4c609e9683959193dafd7a32bb8393410cbddc74':
  Remove CAP_NET_RAW from adb
diff --git a/adb/adb.c b/adb/adb.c
index 530a4c8..a11e024 100644
--- a/adb/adb.c
+++ b/adb/adb.c
@@ -1195,8 +1195,7 @@
 #endif
     int i;
     for (i = 0; prctl(PR_CAPBSET_READ, i, 0, 0, 0) >= 0; i++) {
-        if ((i == CAP_NET_RAW) || (i == CAP_SETUID) || (i == CAP_SETGID)) {
-            // CAP_NET_RAW needed by /system/bin/ping
+        if ((i == CAP_SETUID) || (i == CAP_SETGID)) {
             // CAP_SETUID CAP_SETGID needed by /system/bin/run-as
             continue;
         }