commit | 9e0e02b6db412a3174594353dfb60787875e4bc9 | [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 | ef6c8f1db5028f23ecdcf4c77ea1f24ab1e8c46e [diff] | |
parent | 89ee7908039a1a92ffa433996c716e64fe2eccc4 [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(""); }