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

Commit 4141cb23 authored by Mark Salyzyn's avatar Mark Salyzyn
Browse files

logd: default off by-UID spam filter

Bug: 14469172
Change-Id: I37c8dbcea0490afb994cbe6f033591fea1c58bc8
parent 2d2fd4cd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ void Prune::format(char **strp) {
}

PruneList::PruneList()
        : mWorstUidEnabled(true) {
        : mWorstUidEnabled(false) {
    mNaughty.clear();
    mNice.clear();
}
@@ -65,7 +65,7 @@ PruneList::~PruneList() {
}

int PruneList::init(char *str) {
    mWorstUidEnabled = true;
    mWorstUidEnabled = false;
    PruneCollection::iterator it;
    for (it = mNice.begin(); it != mNice.end();) {
        delete (*it);