Fixed recognition of alternate world SID

N2009_11_14_FIXES
jpandre 2007-12-02 20:22:22 +00:00
parent 3284b3fd4a
commit d49a557167
1 changed files with 2 additions and 2 deletions

View File

@ -2638,8 +2638,8 @@ static int is_world_sid(const SID * usid)
|| ((usid->sub_authority_count == 2)
&& (usid->identifier_authority.high_part == cpu_to_be32(0))
&& (usid->identifier_authority.low_part == cpu_to_be32(5))
&& (usid->sub_authority[0] == 32)
&& (usid->sub_authority[0] == 545))
&& (usid->sub_authority[0] == cpu_to_le32(32))
&& (usid->sub_authority[1] == cpu_to_le32(545)))
);
}