diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-03-18 21:09:57 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-03-18 21:09:57 -0400 |
commit | f5625ab8c611f71a74630c33bfe5ecfe75458f9a (patch) | |
tree | 71ed54dfd6b08783041618ea814b9427b9791fd4 /src/udev/udev-ctrl.c | |
parent | 3a864f5e04d496dd2515bfd932c83e700e326ba1 (diff) |
Replace ENOTSUP with EOPNOTSUPP
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/udev/udev-ctrl.c')
-rw-r--r-- | src/udev/udev-ctrl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |