Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cca6ca09 authored by Elliott Hughes's avatar Elliott Hughes Committed by android-build-merger
Browse files

Merge "Track name change from adb_main to adb_server_main."

am: ee5c87ee

* commit 'ee5c87ee':
  Track name change from adb_main to adb_server_main.
parents 8f9a1575 ee5c87ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
#include "adb_auth.h"
#include "transport.h"

int adb_main(int is_daemon, int server_port, int /* reply_fd */) {
int adb_server_main(int is_daemon, int server_port, int /* reply_fd */) {
    adb_device_banner = "sideload";

    signal(SIGPIPE, SIG_IGN);
+1 −1
Original line number Diff line number Diff line
@@ -1015,7 +1015,7 @@ main(int argc, char **argv) {
    // only way recovery should be run with this argument is when it
    // starts a copy of itself from the apply_from_adb() function.
    if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
        adb_main(0, DEFAULT_ADB_PORT, -1);
        adb_server_main(0, DEFAULT_ADB_PORT, -1);
        return 0;
    }