Changeset 988 for vendor/current/source3/lib/netapi/localgroup.c
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
-
vendor/current/source3/lib/netapi/localgroup.c (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/lib/netapi/localgroup.c
r860 r988 166 166 } 167 167 168 169 170 171 172 168 173 switch (r->in.level) { 169 174 case 0: … … 180 185 } 181 186 182 ZERO_STRUCT(connect_handle);183 ZERO_STRUCT(builtin_handle);184 ZERO_STRUCT(domain_handle);185 ZERO_STRUCT(alias_handle);186 187 187 werr = libnetapi_open_pipe(ctx, r->in.server_name, 188 &ndr_table_samr .syntax_id,188 &ndr_table_samr, 189 189 &pipe_cli); 190 190 if (!W_ERROR_IS_OK(werr)) { … … 320 320 321 321 werr = libnetapi_open_pipe(ctx, r->in.server_name, 322 &ndr_table_samr .syntax_id,322 &ndr_table_samr, 323 323 &pipe_cli); 324 324 if (!W_ERROR_IS_OK(werr)) { … … 500 500 501 501 werr = libnetapi_open_pipe(ctx, r->in.server_name, 502 &ndr_table_samr .syntax_id,502 &ndr_table_samr, 503 503 &pipe_cli); 504 504 if (!W_ERROR_IS_OK(werr)) { … … 617 617 union samr_AliasInfo *info = NULL; 618 618 619 info = TALLOC_ZERO_P(mem_ctx, union samr_AliasInfo);619 info = (mem_ctx, union samr_AliasInfo); 620 620 W_ERROR_HAVE_NO_MEMORY(info); 621 621 … … 679 679 680 680 werr = libnetapi_open_pipe(ctx, r->in.server_name, 681 &ndr_table_samr .syntax_id,681 &ndr_table_samr, 682 682 &pipe_cli); 683 683 if (!W_ERROR_IS_OK(werr)) { … … 829 829 830 830 werr = libnetapi_open_pipe(ctx, r->in.server_name, 831 &ndr_table_samr .syntax_id,831 &ndr_table_samr, 832 832 &pipe_cli); 833 833 if (!W_ERROR_IS_OK(werr)) { … … 1122 1122 ZERO_STRUCT(alias_handle); 1123 1123 1124 member_sids = TALLOC_ZERO_ARRAY(ctx, struct dom_sid,1124 member_sids = (ctx, struct dom_sid, 1125 1125 r->in.total_entries); 1126 1126 W_ERROR_HAVE_NO_MEMORY(member_sids); … … 1142 1142 if (r->in.level == 3) { 1143 1143 werr = libnetapi_open_pipe(ctx, r->in.server_name, 1144 &ndr_table_lsarpc .syntax_id,1144 &ndr_table_lsarpc, 1145 1145 &lsa_pipe); 1146 1146 if (!W_ERROR_IS_OK(werr)) { … … 1161 1161 1162 1162 werr = libnetapi_open_pipe(ctx, r->in.server_name, 1163 &ndr_table_samr .syntax_id,1163 &ndr_table_samr, 1164 1164 &pipe_cli); 1165 1165 if (!W_ERROR_IS_OK(werr)) {
Note:
See TracChangeset
for help on using the changeset viewer.
