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

Commit 5c02b276 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Gerrit Code Review
Browse files

Merge "logd: default off by-UID spam filter"

parents 2d2fd4cd 4141cb23
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -47,7 +47,7 @@ void Prune::format(char **strp) {
}
}


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


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