Changeset 233 for branches/samba-3.2.x/source/winbindd/winbindd_rpc.c
- Timestamp:
- May 27, 2009, 11:39:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/source/winbindd/winbindd_rpc.c
r228 r233 822 822 823 823 for (r=0; r<tmp_names.count; r++) { 824 (*names)[i+r] = fill_domain_username_talloc(mem_ctx, 825 domain->name, 826 tmp_names.names[r].string, 827 true); 828 (*name_types)[i+r] = tmp_types.ids[r]; 829 } 830 831 total_names += tmp_names.count; 824 if (tmp_types.ids[r] == SID_NAME_UNKNOWN) { 825 continue; 826 } 827 (*names)[total_names] = fill_domain_username_talloc( 828 mem_ctx, domain->name, 829 tmp_names.names[r].string, true); 830 (*name_types)[total_names] = tmp_types.ids[r]; 831 total_names += 1; 832 } 832 833 } 833 834
Note:
See TracChangeset
for help on using the changeset viewer.