Add EAFNOSUPPORT.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-03-19 22:39:41 +01:00
parent c7d833686a
commit 8a72874548
2 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,7 @@
#define EMLINK 54
#define ENXIO 55
#define EPROTONOSUPPORT 56
#define EAFNOSUPPORT 57
#define EOPNOTSUPP ENOTSUP

View File

@ -75,6 +75,7 @@ extern "C" const char* sortix_strerror(int errnum)
case EMLINK: return "Too many links";
case ENXIO: return "No such device or address";
case EPROTONOSUPPORT: return "Protocol not supported";
case EAFNOSUPPORT: return "Address family not supported";
default: return "Unknown error condition";
}
}