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:
authorCorinna Vinschen <corinna@vinschen.de>2010-02-24 20:30:18 +0300
committerCorinna Vinschen <corinna@vinschen.de>2010-02-24 20:30:18 +0300
commitbe71be8e18a85fc275cc7193029124d79b8a077e (patch)
tree7d92fe8ea8957b7ed5bb45abe947c950ca5bb7c4 /winsup/cygwin/sec_auth.cc
parentc6a6b5a3ac30a43a47aa86a36ef4feac6c34c0ce (diff)
* sec_auth.cc (get_full_privileged_inheritable_token): Fix dumb typo
when checking linked token for being a primary token.
Diffstat (limited to 'winsup/cygwin/sec_auth.cc')
-rw-r--r--winsup/cygwin/sec_auth.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/sec_auth.cc b/winsup/cygwin/sec_auth.cc
index 940483b4a..8af0b9837 100644
--- a/winsup/cygwin/sec_auth.cc
+++ b/winsup/cygwin/sec_auth.cc
@@ -61,8 +61,8 @@ get_full_privileged_inheritable_token (HANDLE token)
/* At this point we don't know if the user actually had TCB
privileges. Check if the linked token is a primary token.
If not, just return the original token. */
- if (GetTokenInformation (token, TokenType, (PVOID) &type,
- sizeof type, &size)
+ if (GetTokenInformation (linked.LinkedToken, TokenType,
+ (PVOID) &type, sizeof type, &size)
&& type != TokenPrimary)
debug_printf ("Linked Token is not a primary token!");
else