From 40b364a6dbbd95a478205cb71f0b3e9ab502c596 Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Wed, 27 Jul 2005 11:53:05 +0000 Subject: [PATCH] Added some error strings. --- lib/ansi/errlist.c | 4 ++++ 1 file changed, 4 insertions(+) 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]);