1232. [bug] unix/errno2result() didn't handle EADDRNOTAVAIL.

This commit is contained in:
Mark Andrews 2002-03-15 05:01:33 +00:00
parent 1e258716ac
commit c00a1eb423
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,5 @@
1232. [bug] unix/errno2result() didn't handle EADDRNOTAVAIL.
1231. [port] HPUX 11.11 recvmsg() can return spurious EADDRNOTAVAIL.
1230. [bug] isccc_cc_isreply() and isccc_cc_isack() were broken.

View file

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: errno2result.c,v 1.10 2002/02/20 03:35:40 marka Exp $ */
/* $Id: errno2result.c,v 1.11 2002/03/15 05:01:33 marka Exp $ */
#include <config.h>
@ -100,6 +100,8 @@ isc__errno2result(int posixerrno) {
case EADDRINUSE:
return (ISC_R_ADDRINUSE);
#endif
case EADDRNOTAVAIL:
return (ISC_R_ADDRNOTAVAIL);
default:
isc__strerror(posixerrno, strbuf, sizeof(strbuf));
UNEXPECTED_ERROR(__FILE__, __LINE__,