summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/errlist.c
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2009-11-24 09:22:22 +0000
committerguenther <guenther@openbsd.org>2009-11-24 09:22:22 +0000
commit826ad8342e23f900a168caa822a40e1778ede31e (patch)
treeabf055cefc4d7aa6af7527b304dddf9cfdbb2cbd /lib/libc/gen/errlist.c
parentToggle SENSOR_FINVALID based on sensor data validity (diff)
downloadwireguard-openbsd-826ad8342e23f900a168caa822a40e1778ede31e.tar.xz
wireguard-openbsd-826ad8342e23f900a168caa822a40e1778ede31e.zip
Change ENOTSUP's strerror() to "Not supported"
Provide C and Pig locale expansions for errno values from EAUTH to ENOTSUP ok millert@, mk@, go aheads from others who have other translations in the works
Diffstat (limited to 'lib/libc/gen/errlist.c')
-rw-r--r--lib/libc/gen/errlist.c4
1 files changed, 2 insertions, 2 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] };