unix: map EDQUOT to UV_ENOSPC

This commit is contained in:
Charlie McConnell 2012-09-19 10:49:20 -07:00 committed by Ben Noordhuis
parent 9a4838110d
commit b877db93ce

View File

@ -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();