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/sec_helper.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/sec_helper.cc')
-rw-r--r--winsup/cygwin/sec_helper.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sec_helper.cc b/winsup/cygwin/sec_helper.cc
index 6aaf7f607..5c7eb26d2 100644
--- a/winsup/cygwin/sec_helper.cc
+++ b/winsup/cygwin/sec_helper.cc
@@ -390,7 +390,7 @@ out:
if (hToken)
CloseHandle (hToken);
- syscall_printf ("%d = set_process_privilege (%s, %d)",ret, privilege, enable);
+ syscall_printf ("%d = set_process_privilege (%s, %d)", ret, privilege, enable);
return ret;
}