commit | ad1993305e30dde82700bf0f26b129b14129a2cd | [log] [tgz] |
---|---|---|
author | Ashwini Oruganti <ashfall@google.com> | Tue Sep 24 15:24:19 2019 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Tue Sep 24 15:24:19 2019 -0700 |
tree | ea5b569a868d4740765ec17e680460509299b78e | |
parent | cf55975a3721e89262f2e479f48b6034a0a3cf16 [diff] | |
parent | 9e0e02b6db412a3174594353dfb60787875e4bc9 [diff] |
Merge "Update auditParse to not prepend "b/" to bug IDs" am: 069eae2efa Change-Id: Ia48680c0175938b3982c2ae16d3264715f63e1a8
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(""); }