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 21, 2012
1 parent 9a48381 commit b877db9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/unix/error.c
Expand Up @@ -100,6 +100,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 b877db9

Please sign in to comment.