From 07a21bce5b9f645346aa115f97c9493ba4a5e691 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 5 Mar 2002 18:11:20 +0000 Subject: * errno.cc: Change EPERM associated text to "Operation not permitted" throughout. --- winsup/cygwin/errno.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'winsup/cygwin/errno.cc') diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc index 0643647b2..fc9a455f0 100644 --- a/winsup/cygwin/errno.cc +++ b/winsup/cygwin/errno.cc @@ -153,7 +153,7 @@ extern "C" { const NO_COPY char __declspec(dllexport) * const _sys_errlist[]= { /* NOERROR 0 */ "No error", -/* EPERM 1 */ "Not super-user", +/* EPERM 1 */ "Operation not permitted", /* ENOENT 2 */ "No such file or directory", /* ESRCH 3 */ "No such process", /* EINTR 4 */ "Interrupted system call", @@ -308,10 +308,13 @@ extern "C" char * strerror (int errnum) { const char *error; + if (errnum < _sys_nerr) + error = _sys_errlist [errnum]; + else switch (errnum) { case EPERM: - error = "Not owner"; + error = "Operation not permitted"; break; case ENOENT: error = "No such file or directory"; -- cgit v1.2.3