Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-07-02 03:42:05 +0400
committerChristopher Faylor <me@cgf.cx>2002-07-02 03:42:05 +0400
commit96edd0a9dabf6262ebb9ccf3c472c433921e2472 (patch)
treed3e9360d407e94f4ee356de6c0b398376a212ca9 /winsup/cygwin/errno.cc
parenta8983b39f59958fd819429de4854d42ab36c15a8 (diff)
* syscalls.c (seteuid32): Do not return an error when the token cannot be
created only because of a problem with the gid.
Diffstat (limited to 'winsup/cygwin/errno.cc')
-rw-r--r--winsup/cygwin/errno.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc
index 17ac6a61b..088f1a18d 100644
--- a/winsup/cygwin/errno.cc
+++ b/winsup/cygwin/errno.cc
@@ -135,7 +135,7 @@ geterrno_from_win_error (DWORD code, int deferrno)
void __stdcall
seterrno_from_win_error (const char *file, int line, DWORD code)
{
- syscall_printf ("%s:%d errno %d", file, line, code);
+ syscall_printf ("%s:%d windows error %d", file, line, code);
set_errno (geterrno_from_win_error (code, EACCES));
return;
}