diff options
author | Christopher Faylor <me@cgf.cx> | 2002-07-01 23:42:05 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-07-01 23:42:05 +0000 |
commit | 96edd0a9dabf6262ebb9ccf3c472c433921e2472 (patch) | |
tree | d3e9360d407e94f4ee356de6c0b398376a212ca9 /winsup/cygwin/sec_helper.cc | |
parent | a8983b39f59958fd819429de4854d42ab36c15a8 (diff) | |
download | cygnal-96edd0a9dabf6262ebb9ccf3c472c433921e2472.tar.gz cygnal-96edd0a9dabf6262ebb9ccf3c472c433921e2472.tar.bz2 cygnal-96edd0a9dabf6262ebb9ccf3c472c433921e2472.zip |
* 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.cc | 2 |
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; } |