diff options
Diffstat (limited to 'services')
-rw-r--r-- | services/java/com/android/server/SystemServer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java index 90a4dc1..3146366 100644 --- a/services/java/com/android/server/SystemServer.java +++ b/services/java/com/android/server/SystemServer.java @@ -193,7 +193,7 @@ public final class SystemServer { int adbPort = CMSettings.Secure.getInt(mContentResolver, CMSettings.Secure.ADB_PORT, 0); // setting this will control whether ADB runs on TCP/IP or USB - SystemProperties.set("service.adb.tcp.port", Integer.toString(adbPort)); + SystemProperties.set("adb.network.port", Integer.toString(adbPort)); } } |