View | Details | Raw Unified | Return to bug 49747
Collapse All | Expand All

(-)samba-4.10.1/libcli/security/util_sid.c (+16 lines)
 Lines 686-691   static const struct predefined_name_mapp Link Here 
686
};
686
};
687
687
688
/*
688
/*
689
 * S-1-22
690
 */
691
static const struct predefined_name_mapping predefined_names_S_1_22[] = {
692
	{
693
		.name = "Unix",
694
		.type = SID_NAME_DOMAIN,
695
		.sid = _SID0(22), /* S-1-22 */
696
	},
697
};
698
/*
689
 * S-1-16
699
 * S-1-16
690
 */
700
 */
691
static const struct predefined_name_mapping predefined_names_S_1_16[] = {
701
static const struct predefined_name_mapping predefined_names_S_1_16[] = {
 Lines 807-812   static const struct predefined_domain_ma Link Here 
807
		.num_names = ARRAY_SIZE(predefined_names_S_1_16),
817
		.num_names = ARRAY_SIZE(predefined_names_S_1_16),
808
		.names = predefined_names_S_1_16,
818
		.names = predefined_names_S_1_16,
809
	},
819
	},
820
	{
821
		.domain = "Unix",
822
		.sid = _SID0(22), /* S-1-22 */
823
		.num_names = ARRAY_SIZE(predefined_names_S_1_22),
824
		.names = predefined_names_S_1_22,
825
	},
810
};
826
};
811
827
812
NTSTATUS dom_sid_lookup_predefined_name(const char *name,
828
NTSTATUS dom_sid_lookup_predefined_name(const char *name,

Return to bug 49747