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

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

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

parents 8c055fbe 1d02c2ad
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("");
    }