From 19af893d7eeec45d99bc87bc9c2cc0225a65b8b8 Mon Sep 17 00:00:00 2001 From: phk Date: Sat, 24 Apr 1999 18:28:24 +0000 Subject: [PATCH] Add missing strings. PR: 11285 Submitted by: Chris Costello Reviewed by: phk --- lib/libc/gen/errlst.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/libc/gen/errlst.c b/lib/libc/gen/errlst.c index cd7e7198b46d..a64379416675 100644 --- a/lib/libc/gen/errlst.c +++ b/lib/libc/gen/errlst.c @@ -136,6 +136,13 @@ const char *const sys_errlist[] = { "No locks available", /* 77 - ENOLCK */ "Function not implemented", /* 78 - ENOSYS */ "Inappropriate file type or format", /* 79 - EFTYPE */ + "Authentication error", /* 80 - EAUTH */ + "Need authenticator", /* 81 - ENEEDAUTH */ + "Identifier removed", /* 82 - EIDRM */ + "No message of desired type", /* 83 - ENOMSG */ + "Value too large to be stored in data type", /* 84 - EOVERFLOW */ + "Operation canceled", /* 85 - ECANCELED */ + "Illegal byte sequence", /* 86 - EILSEQ */ }; int errno; const int sys_nerr = sizeof(sys_errlist) / sizeof(sys_errlist[0]);