* sec_helper.cc (legal_sid_type): Fix conditional. Change to
inline function.
This commit is contained in:
@ -238,11 +238,11 @@ cygsid::get_id (BOOL search_grp, int *type)
|
||||
return id;
|
||||
}
|
||||
|
||||
static BOOL
|
||||
static inline BOOL
|
||||
legal_sid_type (SID_NAME_USE type)
|
||||
{
|
||||
return type == SidTypeUser || type == SidTypeGroup
|
||||
|| SidTypeAlias || SidTypeWellKnownGroup;
|
||||
return type == SidTypeUser || type == SidTypeGroup
|
||||
|| type == SidTypeAlias || type == SidTypeWellKnownGroup;
|
||||
}
|
||||
|
||||
BOOL
|
||||
|
Reference in New Issue
Block a user