diff options
-rw-r--r-- | lib/libc/gen/errlist.c | 4 | ||||
-rw-r--r-- | lib/libc/nls/C.msg | 24 | ||||
-rw-r--r-- | lib/libc/nls/Pig.msg | 24 | ||||
-rw-r--r-- | sys/sys/errno.h | 4 |
4 files changed, 52 insertions, 4 deletions
diff --git a/lib/libc/gen/errlist.c b/lib/libc/gen/errlist.c index 0c14fb1ed58..69607e70900 100644 --- a/lib/libc/gen/errlist.c +++ b/lib/libc/gen/errlist.c @@ -1,4 +1,4 @@ -/* $OpenBSD: errlist.c,v 1.13 2009/10/26 21:09:33 jasper Exp $ */ +/* $OpenBSD: errlist.c,v 1.14 2009/11/24 09:22:22 guenther Exp $ */ /* * Copyright (c) 1982, 1985, 1993 * The Regents of the University of California. All rights reserved. @@ -144,6 +144,6 @@ const char *const "Operation canceled", /* 88 - ECANCELED */ "Identifier removed", /* 89 - EIDRM */ "No message of desired type", /* 90 - ENOMSG */ - "Operation not supported", /* 91 - ENOTSUP */ + "Not supported", /* 91 - ENOTSUP */ }; int _sys_nerr = { sizeof _sys_errlist/sizeof _sys_errlist[0] }; diff --git a/lib/libc/nls/C.msg b/lib/libc/nls/C.msg index a077a554176..621e569c915 100644 --- a/lib/libc/nls/C.msg +++ b/lib/libc/nls/C.msg @@ -157,6 +157,30 @@ $ ENOSYS 78 Function not implemented $ EFTYPE 79 Inappropriate file type or format +$ EAUTH +80 Authentication error +$ ENEEDAUTH +81 Need authenticator +$ EIPSEC +82 IPsec processing failure +$ ENOATTR +83 Attribute not found +$ EILSEQ +84 Illegal byte sequence +$ ENOMEDIUM +85 No medium found +$ EMEDIUMTYPE +86 Wrong medium type +$ EOVERFLOW +87 Value too large to be stored in data type +$ ECANCELED +88 Operation canceled +$ EIDRM +89 Identifier removed +$ ENOMSG +90 No message of desired type +$ ENOTSUP +91 Not supported $set 2 $ SIGHUP 1 Hangup diff --git a/lib/libc/nls/Pig.msg b/lib/libc/nls/Pig.msg index 9692602d163..e48cb70b581 100644 --- a/lib/libc/nls/Pig.msg +++ b/lib/libc/nls/Pig.msg @@ -157,6 +157,30 @@ $ ENOSYS 78 Unctionfay otnay implementedway $ EFTYPE 79 Inappropriateway ilefay ypetay orway ormatfay +$ EAUTH +80 Authenticationway errorway +$ ENEEDAUTH +81 Eednay authenticatorway +$ EIPSEC +82 IPsecway ocessingpray ailurefay +$ ENOATTR +83 Attributeway otnay oundfay +$ EILSEQ +84 Illegalway ytebay equencesay +$ ENOMEDIUM +85 Onay ediummay oundfay +$ EMEDIUMTYPE +86 Ongwray ediummay ypetay +$ EOVERFLOW +87 Aluebay ootay argelay otay ebay oredstay inway ataday ypetay +$ ECANCELED +88 Operationway anceledcay +$ EIDRM +89 Identifierway emovedray +$ ENOMSG +90 Onay essagemay ofway esiredday ypetay +$ ENOTSUP +91 Otnay upportedsay $set 2 $ SIGHUP 1 Anguphay diff --git a/sys/sys/errno.h b/sys/sys/errno.h index 02abdf3f20c..59a8f0710a2 100644 --- a/sys/sys/errno.h +++ b/sys/sys/errno.h @@ -1,4 +1,4 @@ -/* $OpenBSD: errno.h,v 1.21 2009/10/26 21:09:33 jasper Exp $ */ +/* $OpenBSD: errno.h,v 1.22 2009/11/24 09:22:22 guenther Exp $ */ /* $NetBSD: errno.h,v 1.10 1996/01/20 01:33:53 jtc Exp $ */ /* @@ -166,7 +166,7 @@ #endif /* __BSD_VISIBLE */ #define EIDRM 89 /* Identifier removed */ #define ENOMSG 90 /* No message of desired type */ -#define ENOTSUP 91 /* Operation not supported */ +#define ENOTSUP 91 /* Not supported */ #if __BSD_VISIBLE #define ELAST 91 /* Must be equal largest errno */ #endif /* __BSD_VISIBLE */ |