summaryrefslogtreecommitdiff
path: root/source3/lib/errmap_unix.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-06-17 16:06:34 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-06-17 17:09:00 +1000
commit4162c7b74aa94ee77ef47f0abae058b80eca6e38 (patch)
tree7a1f1653eb6146a4616915908ee51c6eff061e5c /source3/lib/errmap_unix.c
parente645675aa46e945da5293b54a1bd368599b7b5a7 (diff)
downloadsamba-4162c7b74aa94ee77ef47f0abae058b80eca6e38.tar.gz
samba-4162c7b74aa94ee77ef47f0abae058b80eca6e38.tar.bz2
samba-4162c7b74aa94ee77ef47f0abae058b80eca6e38.zip
errors: reorder error codes for easier s3/s4 comparison
Diffstat (limited to 'source3/lib/errmap_unix.c')
-rw-r--r--source3/lib/errmap_unix.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/source3/lib/errmap_unix.c b/source3/lib/errmap_unix.c
index 8de397c730..ea195474ef 100644
--- a/source3/lib/errmap_unix.c
+++ b/source3/lib/errmap_unix.c
@@ -28,6 +28,14 @@ static const struct {
int unix_error;
NTSTATUS nt_error;
} unix_nt_errmap[] = {
+ { EAGAIN, NT_STATUS_NETWORK_BUSY },
+ { EINTR, NT_STATUS_RETRY },
+#ifdef ENOBUFS
+ { ENOBUFS, NT_STATUS_INSUFFICIENT_RESOURCES },
+#endif
+#ifdef EWOULDBLOCK
+ { EWOULDBLOCK, NT_STATUS_NETWORK_BUSY },
+#endif
{ EPERM, NT_STATUS_ACCESS_DENIED },
{ EACCES, NT_STATUS_ACCESS_DENIED },
{ ENOENT, NT_STATUS_OBJECT_NAME_NOT_FOUND },
@@ -41,8 +49,10 @@ static const struct {
{ ENOSPC, NT_STATUS_DISK_FULL },
{ ENOMEM, NT_STATUS_NO_MEMORY },
{ EISDIR, NT_STATUS_FILE_IS_A_DIRECTORY},
+#ifdef EPIPE
+ { EPIPE, NT_STATUS_PIPE_BROKEN},
+#endif
{ EMLINK, NT_STATUS_TOO_MANY_LINKS },
- { EINTR, NT_STATUS_RETRY },
{ ENOSYS, NT_STATUS_NOT_SUPPORTED },
#ifdef ELOOP
{ ELOOP, NT_STATUS_OBJECT_PATH_NOT_FOUND },
@@ -68,10 +78,6 @@ static const struct {
#ifdef EFBIG
{ EFBIG, NT_STATUS_DISK_FULL },
#endif
-#ifdef ENOBUFS
- { ENOBUFS, NT_STATUS_INSUFFICIENT_RESOURCES },
-#endif
- { EAGAIN, NT_STATUS_NETWORK_BUSY },
#ifdef EADDRINUSE
{ EADDRINUSE, NT_STATUS_ADDRESS_ALREADY_ASSOCIATED},
#endif
@@ -96,12 +102,6 @@ static const struct {
#ifdef ENODEV
{ ENODEV, NT_STATUS_DEVICE_DOES_NOT_EXIST},
#endif
-#ifdef EPIPE
- { EPIPE, NT_STATUS_PIPE_BROKEN},
-#endif
-#ifdef EWOULDBLOCK
- { EWOULDBLOCK, NT_STATUS_NETWORK_BUSY },
-#endif
#ifdef ENOATTR
{ ENOATTR, NT_STATUS_NOT_FOUND },
#endif