Add EFAULT.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-04-21 23:07:31 +02:00
parent 4eb06d9063
commit 1adef1d0e2
2 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,7 @@
#define ECONNRESET 67
#define EADDRNOTAVAIL 68
#define EISCONN 69
#define EFAULT 70
#define EOPNOTSUPP ENOTSUP

View File

@ -88,6 +88,7 @@ extern "C" const char* sortix_strerror(int errnum)
case ECONNRESET: return "Connection reset";
case EADDRNOTAVAIL: return "Address not available";
case EISCONN: return "Socket is connected";
case EFAULT: return "Bad address";
default: return "Unknown error condition";
}
}