Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
unix: map EDQUOT to UV_ENOSPC
Browse files Browse the repository at this point in the history
  • Loading branch information
AvianFlu authored and bnoordhuis committed Sep 19, 2012
1 parent ea8db64 commit 2916a16
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/unix/error.c
Expand Up @@ -102,6 +102,7 @@ uv_err_code uv_translate_sys_error(int sys_errno) {
case ENOSPC: return UV_ENOSPC;
case EROFS: return UV_EROFS;
case ENOMEM: return UV_ENOMEM;
case EDQUOT: return UV_ENOSPC;
default: return UV_UNKNOWN;
}
UNREACHABLE();
Expand Down

0 comments on commit 2916a16

Please sign in to comment.