diff options
author | Christopher Faylor <me@cgf.cx> | 2008-11-26 17:21:04 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2008-11-26 17:21:04 +0000 |
commit | 025c1fac6ee41d7814af7d114791dbf4c22ed617 (patch) | |
tree | 40ed7d77fb6578653e57e1f4693dbe594c13218a /winsup/cygwin/sec_auth.cc | |
parent | f43f75a09db3935effc2f56ecd47b55e3b7c9300 (diff) | |
download | cygnal-025c1fac6ee41d7814af7d114791dbf4c22ed617.tar.gz cygnal-025c1fac6ee41d7814af7d114791dbf4c22ed617.tar.bz2 cygnal-025c1fac6ee41d7814af7d114791dbf4c22ed617.zip |
Remove unneeded whitespace.
* fhandler_fifo.cc (fhandler_fifo::open): Rework to cause errno to be set to
ENXIO when opening a fifo write/nonblocking.
* environ.cc (ucreqenv): Rename to ucenv. Move code from old ucenv here and
conditionalize it on create_upcaseenv.
(ucenv): Delete.
(environ_init): Fix compiler warning by moving create_upcaseenv test to ucenv.
Don't bother checking for child_proc_info when calling ucenv since it is
assumed to be NULL at the point where the function is called.
* path.cc (symlink_worker): Turn off MS-DOS path warnings when dealing with
devices since the device handler passes in a translated MS-DOS path.
* sec_auth.cc (lsaprivkeyauth): Avoid variable initialization which causes a
compiler error.
* fhandler_netdrive.cc: Update copyright.
Diffstat (limited to 'winsup/cygwin/sec_auth.cc')
-rw-r--r-- | winsup/cygwin/sec_auth.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/cygwin/sec_auth.cc b/winsup/cygwin/sec_auth.cc index 138131744..f01abf912 100644 --- a/winsup/cygwin/sec_auth.cc +++ b/winsup/cygwin/sec_auth.cc @@ -720,7 +720,7 @@ verify_token (HANDLE token, cygsid &usersid, user_groups &groups, bool *pintern) groups in the token, which are not in the group list set with setgroups(). That's rather dangerous. What we're really interested in is that all groups in the setgroups() - list are in the token. A token created through ADVAPI + list are in the token. A token created through ADVAPI should be allowed to contain more groups than requested through setgroups(), esecially since Vista and the addition of integrity groups. So we disable this statement @@ -1221,7 +1221,8 @@ lsaprivkeyauth (struct passwd *pw) } /* The key is not 0-terminated. */ - PWCHAR passwd = (PWCHAR) alloca (data->Length + sizeof (WCHAR)); + PWCHAR passwd; + passwd = (PWCHAR) alloca (data->Length + sizeof (WCHAR)); *wcpncpy (passwd, data->Buffer, data->Length / sizeof (WCHAR)) = L'\0'; LsaFreeMemory (data); debug_printf ("Try logon for %W\\%W", domain, user); |