projects
/
platform
/
core
/
security
/
audit-trail.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2722b6
)
Fix the range of string condition field
87/186087/1
author
seolheui, kim
<s414.kim@samsung.com>
Tue, 7 Aug 2018 06:55:50 +0000
(15:55 +0900)
committer
seolheui, kim
<s414.kim@samsung.com>
Tue, 7 Aug 2018 06:55:50 +0000
(15:55 +0900)
Change-Id: I1ba3f90955efa21cf8137fe8bd9179bd74186892
Signed-off-by: seolheui, kim <s414.kim@samsung.com>
lib/audit-rule/field.h
patch
|
blob
|
history
diff --git
a/lib/audit-rule/field.h
b/lib/audit-rule/field.h
index a4e970f15879874c0ce244e6e6611ec21e64b7e5..d4e52387a0a1a50a124b5144cb12cc929cdb5a0e 100644
(file)
--- a/
lib/audit-rule/field.h
+++ b/
lib/audit-rule/field.h
@@
-123,7
+123,8
@@
public:
(type == FieldType::WatchPath) ||
(type == FieldType::WatchDir) ||
(type == FieldType::Arch) ||
- (type >= FieldType::SubjectUser && type <= FieldType::ObjectLevHigh);
+ (type >= FieldType::SubjectUser && type <= FieldType::SubjectClr) ||
+ (type >= FieldType::ObjectUser && type <= FieldType::ObjectLevHigh);
}
};