mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 13:50:00 -04:00
add UV_ENOTSUP to isc___nm_uverr2result()
This error code is now mapped to ISC_R_FAMILYNOSUPPORT.
This commit is contained in:
parent
ec82226465
commit
be0bc24c7f
1 changed files with 2 additions and 0 deletions
|
|
@ -89,6 +89,8 @@ isc___nm_uverr2result(int uverr, bool dolog, const char *file,
|
|||
return (ISC_R_EOF);
|
||||
case UV_EMSGSIZE:
|
||||
return (ISC_R_MAXSIZE);
|
||||
case UV_ENOTSUP:
|
||||
return (ISC_R_FAMILYNOSUPPORT);
|
||||
default:
|
||||
if (dolog) {
|
||||
UNEXPECTED_ERROR(
|
||||
|
|
|
|||
Loading…
Reference in a new issue