2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-31 06:16:03 +00:00

parser: add rule merging for signals

Signed-off-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
John Johansen
2023-07-05 03:27:03 -07:00
parent 3ede2c46cf
commit 53b99a82f6
2 changed files with 32 additions and 0 deletions

View File

@@ -57,6 +57,9 @@ public:
virtual int expand_variables(void);
virtual int gen_policy_re(Profile &prof);
virtual bool is_mergeable(void) { return true; }
virtual int cmp(rule_t const &rhs) const;
protected:
virtual void warn_once(const char *name) override;
};