summaryrefslogtreecommitdiff
path: root/src
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
parent3a864f5e04d496dd2515bfd932c83e700e326ba1 (diff)
Replace ENOTSUP with EOPNOTSUPP
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r--src/shared/selinux-util.c2
-rw-r--r--src/shared/smack-util.c2
-rw-r--r--src/udev/udev-ctrl.c2
3 files changed, 3 insertions, 3 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;
}
diff --git a/src/udev/udev-ctrl.c b/src/udev/udev-ctrl.c
index 136db091e0..64fe9f8d5a 100644
--- a/src/udev/udev-ctrl.c
+++ b/src/udev/udev-ctrl.c
@@ -202,7 +202,7 @@ struct udev_ctrl_connection *udev_ctrl_get_connection(struct udev_ctrl *uctrl) {
conn->sock = accept4(uctrl->sock, NULL, NULL, SOCK_CLOEXEC|SOCK_NONBLOCK);
/* Fallback path when accept4() is unavailable */
- if ( conn->sock < 0 && (errno == ENOSYS || errno == ENOTSUP) )
+ if ( conn->sock < 0 && (errno == ENOSYS || errno == EOPNOTSUPP) )
conn->sock = accept4_fallback(uctrl->sock);
#else
conn->sock = accept4_fallback(uctrl->sock);