summaryrefslogtreecommitdiffstats
path: root/src/status.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/status.c')
-rw-r--r--src/status.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/status.c b/src/status.c
index a0bb17e..ed48952 100644
--- a/src/status.c
+++ b/src/status.c
@@ -41,10 +41,6 @@ zix_errno_status(const int e)
switch (e) {
case 0:
return ZIX_STATUS_SUCCESS;
-#ifdef EAGAIN
- case EAGAIN:
- return ZIX_STATUS_NO_MEM;
-#endif
#ifdef EEXIST
case EEXIST:
return ZIX_STATUS_EXISTS;
@@ -57,6 +53,10 @@ zix_errno_status(const int e)
case EPERM:
return ZIX_STATUS_BAD_PERMS;
#endif
+#ifdef ETIMEDOUT
+ case ETIMEDOUT:
+ return ZIX_STATUS_TIMEOUT;
+#endif
default:
break;
}