diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-04-30 16:32:59 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-04-30 16:32:59 +0000 |
commit | 767364b34a4782267f343bb7d05f9b4d56c834e7 (patch) | |
tree | 3ebf27940e4498f012407bb8b32193147af8759f /lib/libc | |
parent | 53d632a56390b1be823ac94e26c8cbea0b0886ed (diff) |
Some errno entries were not documented or added to _sys_errlist[] when
they were added to errno.h. Add the missing entries. ok millert@
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/errlist.c | 5 | ||||
-rw-r--r-- | lib/libc/sys/intro.2 | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lib/libc/gen/errlist.c b/lib/libc/gen/errlist.c index 64e598425ad..2e1f1b7df87 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.3 1996/09/15 09:30:59 tholo Exp $"; +static char *rcsid = "$OpenBSD: errlist.c,v 1.4 2002/04/30 16:32:58 drahn Exp $"; #endif /* LIBC_SCCS and not lint */ #ifdef lint @@ -139,5 +139,8 @@ const char *const "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 */ + "IPsec processing failure", /* 82 - EIPSEC */ }; int _sys_nerr = { sizeof _sys_errlist/sizeof _sys_errlist[0] }; diff --git a/lib/libc/sys/intro.2 b/lib/libc/sys/intro.2 index 6e9b8b397b6..0d3c0ea25d7 100644 --- a/lib/libc/sys/intro.2 +++ b/lib/libc/sys/intro.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: intro.2,v 1.21 2001/08/22 12:15:46 heko Exp $ +.\" $OpenBSD: intro.2,v 1.22 2002/04/30 16:32:58 drahn Exp $ .\" $NetBSD: intro.2,v 1.6 1995/02/27 12:33:41 cgd Exp $ .\" .\" Copyright (c) 1980, 1983, 1986, 1991, 1993 @@ -396,6 +396,10 @@ filesystem. An authentication ticket must be obtained before the given .Tn NFS filesystem may be mounted. +.It Er 82 EIPSEC Em "IPsec processing failure" . +IPsec subsystem error, +Not used in +.Ox . .El .Sh DEFINITIONS .Bl -tag -width Ds |