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

Commit a9eac60c authored by Ashwini Oruganti's avatar Ashwini Oruganti Committed by android-build-merger
Browse files

Merge "Update auditParse to not prepend "b/" to bug IDs"

am: 069eae2e

Change-Id: Ia48680c0175938b3982c2ae16d3264715f63e1a8
parents bd859add 069eae2e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ void LogAudit::auditParse(const std::string& string, uid_t uid,
    }
    auto search = denial_to_bug.find(scontext + tcontext + tclass);
    if (search != denial_to_bug.end()) {
        bug_num->assign(" b/" + search->second);
        bug_num->assign(" " + search->second);
    } else {
        bug_num->assign("");
    }