Handle EDQUOT and ENOSPC errors
This commit is contained in:
@@ -57,6 +57,12 @@ isc___errno2result(int posixerrno, bool dolog,
|
||||
case ENFILE:
|
||||
case EMFILE:
|
||||
return (ISC_R_TOOMANYOPENFILES);
|
||||
#ifdef EDQUOT
|
||||
case EDQUOT:
|
||||
return (ISC_R_DISCQUOTA);
|
||||
#endif
|
||||
case ENOSPC:
|
||||
return (ISC_R_DISCFULL);
|
||||
#ifdef EOVERFLOW
|
||||
case EOVERFLOW:
|
||||
return (ISC_R_RANGE);
|
||||
|
||||
Reference in New Issue
Block a user