File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2511,12 +2511,10 @@ int main (int argc, char **argv)
25112511 subgid_count = getdef_ulong ("SUB_GID_COUNT" , 65536 );
25122512 is_sub_uid = want_subuid_file () &&
25132513 subuid_count > 0 && sub_uid_file_present () &&
2514- (!rflg || Fflg ) &&
2515- (!user_id || (user_id <= uid_max && user_id >= uid_min ));
2514+ (!rflg && (!user_id || (user_id <= uid_max && user_id >= uid_min ))) || Fflg ;
25162515 is_sub_gid = want_subgid_file () &&
25172516 subgid_count > 0 && sub_gid_file_present () &&
2518- (!rflg || Fflg ) &&
2519- (!user_id || (user_id <= uid_max && user_id >= uid_min ));
2517+ (!rflg && (!user_id || (user_id <= uid_max && user_id >= uid_min ))) || Fflg ;
25202518#endif /* ENABLE_SUBIDS */
25212519
25222520 if (run_parts ("/etc/shadow-maint/useradd-pre.d" , user_name ,
You can’t perform that action at this time.
0 commit comments