* sec_auth.cc (get_full_privileged_inheritable_token): Fix dumb typo
when checking linked token for being a primary token.
This commit is contained in:
parent
c6a6b5a3ac
commit
be71be8e18
|
@ -1,3 +1,8 @@
|
||||||
|
2010-02-24 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* sec_auth.cc (get_full_privileged_inheritable_token): Fix dumb typo
|
||||||
|
when checking linked token for being a primary token.
|
||||||
|
|
||||||
2010-02-24 Christopher Faylor <me+cygwin@cgf.cx>
|
2010-02-24 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
* dlfcn.cc (dlopen): Make sure exception handler is really loaded after
|
* dlfcn.cc (dlopen): Make sure exception handler is really loaded after
|
||||||
|
|
|
@ -61,8 +61,8 @@ get_full_privileged_inheritable_token (HANDLE token)
|
||||||
/* At this point we don't know if the user actually had TCB
|
/* At this point we don't know if the user actually had TCB
|
||||||
privileges. Check if the linked token is a primary token.
|
privileges. Check if the linked token is a primary token.
|
||||||
If not, just return the original token. */
|
If not, just return the original token. */
|
||||||
if (GetTokenInformation (token, TokenType, (PVOID) &type,
|
if (GetTokenInformation (linked.LinkedToken, TokenType,
|
||||||
sizeof type, &size)
|
(PVOID) &type, sizeof type, &size)
|
||||||
&& type != TokenPrimary)
|
&& type != TokenPrimary)
|
||||||
debug_printf ("Linked Token is not a primary token!");
|
debug_printf ("Linked Token is not a primary token!");
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue