remove spurious audit message from missing files with --system

fixes #3840
cute-signatures
Timo Teräs 2015-01-30 16:12:45 +02:00
parent cab03b6912
commit 43182c02f4
1 changed files with 2 additions and 4 deletions

View File

@ -244,9 +244,6 @@ recurse_check:
reason = 'A';
break;
}
} else {
if (protect_mode != APK_PROTECT_NONE)
goto done;
}
dbf = apk_db_file_query(db, bdir, bent);
@ -254,7 +251,8 @@ recurse_check:
reason = audit_file(actx, db, dbf, dirfd, name);
if (reason < 0)
goto done;
if (reason == 'A' && actx->mode == MODE_SYSTEM)
if (actx->mode == MODE_SYSTEM &&
(reason == 'A' || protect_mode != APK_PROTECT_NONE))
goto done;
report_audit(actx, reason, bfull, dbf ? dbf->diri->pkg : NULL);
}