refractor(aa): newRuleFromLog -> newBaseFromLog

This commit is contained in:
Alexandre Pujol 2024-06-19 18:44:55 +01:00
parent afc0a7cd3b
commit cdab2588aa
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
15 changed files with 18 additions and 18 deletions

View file

@ -27,7 +27,7 @@ type Ptrace struct {
func newPtraceFromLog(log map[string]string) Rule {
return &Ptrace{
RuleBase: newRuleFromLog(log),
RuleBase: newBaseFromLog(log),
Qualifier: newQualifierFromLog(log),
Access: Must(toAccess(PTRACE, log["requested_mask"])),
Peer: log["peer"],