diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-05-01 13:36:19 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-05-01 13:36:19 +0000 |
commit | 78deda385902a720387c2db72fd9e05d57fbb906 (patch) | |
tree | b1e6778fb484d53110ee36f55527582b90cd4b9d /lib/libc/gen | |
parent | 41434dbdbf3099a023505b5b3915bf4d9b778ee1 (diff) |
Sync EA with FreeBSD, mostly addition of new ENOATTR errno.
ok millert@, art@
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/errlist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/gen/errlist.c b/lib/libc/gen/errlist.c index 2e1f1b7df87..31867b1b33a 100644 --- a/lib/libc/gen/errlist.c +++ b/lib/libc/gen/errlist.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: errlist.c,v 1.4 2002/04/30 16:32:58 drahn Exp $"; +static char *rcsid = "$OpenBSD: errlist.c,v 1.5 2002/05/01 13:36:18 drahn Exp $"; #endif /* LIBC_SCCS and not lint */ #ifdef lint @@ -142,5 +142,6 @@ const char *const "Authentication error", /* 80 - EAUTH */ "Need authenticator", /* 81 - ENEEDAUTH */ "IPsec processing failure", /* 82 - EIPSEC */ + "Attribute not found", /* 83 - ENOATTR */ }; int _sys_nerr = { sizeof _sys_errlist/sizeof _sys_errlist[0] }; |