diff options
author | phk <phk@FreeBSD.org> | 1999-04-24 18:28:24 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-04-24 18:28:24 +0000 |
commit | 19af893d7eeec45d99bc87bc9c2cc0225a65b8b8 (patch) | |
tree | bb9422b284460555728539c90dfc501144722ed9 /lib/libc | |
parent | 5bbdd11011dcb25bb1777c9b2c90f6247b8d958a (diff) | |
download | FreeBSD-src-19af893d7eeec45d99bc87bc9c2cc0225a65b8b8.zip FreeBSD-src-19af893d7eeec45d99bc87bc9c2cc0225a65b8b8.tar.gz |
Add missing strings.
PR: 11285
Submitted by: Chris Costello <chris@calldei.com>
Reviewed by: phk
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/errlst.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/gen/errlst.c b/lib/libc/gen/errlst.c index cd7e719..a643794 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]); |