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

Commit d81c4f07 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "adbd: fix check of `remount -R`."

parents 44c2010d 2712192e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ static void reboot_for_remount(int fd, bool need_fsck) {
}

void remount_service(unique_fd fd, const std::string& cmd) {
    bool user_requested_reboot = cmd != "-R";
    bool user_requested_reboot = cmd == "-R";

    if (getuid() != 0) {
        WriteFdExactly(fd.get(), "Not running as root. Try \"adb root\" first.\n");