From: Philip Homburg Date: Wed, 27 Jul 2005 11:53:05 +0000 (+0000) Subject: Added some error strings. X-Git-Tag: v3.1.0~519 X-Git-Url: http://zhaoyanbai.com/repos/%24relpath%24tabs.css?a=commitdiff_plain;h=40b364a6dbbd95a478205cb71f0b3e9ab502c596;p=minix.git Added some error strings. --- diff --git a/lib/ansi/errlist.c b/lib/ansi/errlist.c index 4aaeefa48..f336b02aa 100755 --- a/lib/ansi/errlist.c +++ b/lib/ansi/errlist.c @@ -78,6 +78,10 @@ const char *_sys_errlist[] = { "No such connection", /* ENOCONN */ "Address family not supported", /* EAFNOSUPPORT */ "Protocol not supported by AF", /* EPROTONOSUPPORT */ + "Protocol wrong type for socket", /* EPROTOTYPE */ + "Operation in progress", /* EINPROGRESS */ + "Address not available", /* EADDRNOTAVAIL */ + "Connection already in progress", /* EALREADY */ }; const int _sys_nerr = sizeof(_sys_errlist) / sizeof(_sys_errlist[0]);