commit | 069eae2efa36d4426837817998c7b1989c7bc2d5 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Tue Sep 24 21:50:58 2019 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Sep 24 21:50:58 2019 +0000 |
tree | c522b15ab927e75b6659762ab4b4ef8714245744 | |
parent | 8c055fbe3ea88c7385a1a5cbb595ab592bfe65e6 [diff] | |
parent | 1d02c2addcd5470237f71455d50c0d5097b8df86 [diff] |
Merge "Update auditParse to not prepend "b/" to bug IDs"
diff --git a/logd/LogAudit.cpp b/logd/LogAudit.cpp index 5a375ec..665bd38 100644 --- a/logd/LogAudit.cpp +++ b/logd/LogAudit.cpp
@@ -160,7 +160,7 @@ } 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(""); }