diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-10-23 18:34:58 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-10-23 21:36:56 +0200 |
commit | 5dfc54615a1eacea18106383c964425cebd67c30 (patch) | |
tree | 7f6b1cbf4190a08c7b74adc79db2ee3d309b40b8 /src/shared/label.c | |
parent | d1ce2089b4b2fb1f1d8faba9a0aa6d9f8fbb0638 (diff) |
smack: rework SMACK label fixing code to follow more closely the semantics of the matching selinux code
Diffstat (limited to 'src/shared/label.c')
-rw-r--r-- | src/shared/label.c | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/src/shared/label.c b/src/shared/label.c index eae6614969..38992be153 100644 --- a/src/shared/label.c +++ b/src/shared/label.c @@ -23,19 +23,15 @@ #include "util.h" int label_fix(const char *path, bool ignore_enoent, bool ignore_erofs) { - int r = 0; + int r, q; - if (mac_selinux_use()) { - r = mac_selinux_fix(path, ignore_enoent, ignore_erofs); - if (r < 0) - return r; - } + r = mac_selinux_fix(path, ignore_enoent, ignore_erofs); + q = mac_smack_fix(path, ignore_enoent, ignore_erofs); - if (mac_smack_use()) { - r = mac_smack_fix(path); - if (r < 0) - return r; - } + if (r < 0) + return r; + if (q < 0) + return q; - return r; + return 0; } |