summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2015-03-18 21:09:57 -0400
committerAnthony G. Basile <blueness@gentoo.org>2015-03-18 21:09:57 -0400
commitf5625ab8c611f71a74630c33bfe5ecfe75458f9a (patch)
tree71ed54dfd6b08783041618ea814b9427b9791fd4 /src/shared
parent3a864f5e04d496dd2515bfd932c83e700e326ba1 (diff)
Replace ENOTSUP with EOPNOTSUPP
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/selinux-util.c2
-rw-r--r--src/shared/smack-util.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/selinux-util.c b/src/shared/selinux-util.c
index 7f8cc0eb76..4d6808abaa 100644
--- a/src/shared/selinux-util.c
+++ b/src/shared/selinux-util.c
@@ -144,7 +144,7 @@ int mac_selinux_fix(const char *path, bool ignore_enoent, bool ignore_erofs) {
r = lsetfilecon(path, fcon);
/* If the FS doesn't support labels, then exit without warning */
- if (r < 0 && errno == ENOTSUP)
+ if (r < 0 && errno == EOPNOTSUPP)
return 0;
}
}
diff --git a/src/shared/smack-util.c b/src/shared/smack-util.c
index 65bbb94e7c..f715fc1084 100644
--- a/src/shared/smack-util.c
+++ b/src/shared/smack-util.c
@@ -187,7 +187,7 @@ int mac_smack_fix(const char *path, bool ignore_enoent, bool ignore_erofs) {
r = lsetxattr(path, "security.SMACK64", label, strlen(label), 0);
/* If the FS doesn't support labels, then exit without warning */
- if (r < 0 && errno == ENOTSUP)
+ if (r < 0 && errno == EOPNOTSUPP)
return 0;
}