We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd53ef5 commit 63f0b67Copy full SHA for 63f0b67
src/Library/public/usbguard/Policy.cpp
@@ -60,6 +60,17 @@ namespace usbguard
60
USBGUARD_LOG(Trace) << "parent_id=" << parent_id;
61
auto rule = std::make_shared<Rule>(_rule);
62
63
+ if (parent_id == 0) {
64
+ auto ruleset = _rulesets_ptr.front();
65
+
66
+ if (rule->getRuleID() == Rule::DefaultID) {
67
+ assignID(rule);
68
+ }
69
70
+ auto rules = ruleset->getRules();
71
+ return ruleset->appendRule(*rule, 0);
72
73
74
// If the parent_id is set to Rule::LastID then we get the the ID of the last rule in rulesets
75
if (parent_id == Rule::LastID) {
76
auto ruleset = _rulesets_ptr.back();
0 commit comments