* uinfo.cc (pwdgrp::fetch_account_from_windows): Drop redundant test
for SidTypeUser.
This commit is contained in:
parent
06371539bd
commit
211cb4df18
|
@ -1,3 +1,8 @@
|
||||||
|
2015-02-27 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* uinfo.cc (pwdgrp::fetch_account_from_windows): Drop redundant test
|
||||||
|
for SidTypeUser.
|
||||||
|
|
||||||
2015-02-27 Corinna Vinschen <corinna@vinschen.de>
|
2015-02-27 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* sec_acl.cc (setacl): Fix bug which leads to ACE duplication in
|
* sec_acl.cc (setacl): Fix bug which leads to ACE duplication in
|
||||||
|
|
|
@ -2053,7 +2053,7 @@ pwdgrp::fetch_account_from_windows (fetch_user_arg_t &arg, cyg_ldap *pldap)
|
||||||
switch (acc_type)
|
switch (acc_type)
|
||||||
{
|
{
|
||||||
case SidTypeUser:
|
case SidTypeUser:
|
||||||
if (is_group () && acc_type == SidTypeUser)
|
if (is_group ())
|
||||||
{
|
{
|
||||||
/* Don't allow users as group. While this is technically
|
/* Don't allow users as group. While this is technically
|
||||||
possible, it doesn't make sense in a POSIX scenario.
|
possible, it doesn't make sense in a POSIX scenario.
|
||||||
|
|
Loading…
Reference in New Issue