Add EHOSTDOWN to strerror()

This commit is contained in:
François Revol 2014-07-30 12:31:24 +02:00
parent 65b2278e9a
commit 98f35f3a92
1 changed files with 2 additions and 0 deletions

View File

@ -500,6 +500,8 @@ error_description(int error)
return "Operation not supported";
case ENOTSOCK:
return "Socket operation on non-socket";
case EHOSTDOWN:
return "Host is down";
case EBADMSG:
return "Bad message";
case ECANCELED: