Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/lib/netapi/localgroup.c

    r860 r988  
    166166        }
    167167
     168
     169
     170
     171
     172
    168173        switch (r->in.level) {
    169174                case 0:
     
    180185        }
    181186
    182         ZERO_STRUCT(connect_handle);
    183         ZERO_STRUCT(builtin_handle);
    184         ZERO_STRUCT(domain_handle);
    185         ZERO_STRUCT(alias_handle);
    186 
    187187        werr = libnetapi_open_pipe(ctx, r->in.server_name,
    188                                    &ndr_table_samr.syntax_id,
     188                                   &ndr_table_samr,
    189189                                   &pipe_cli);
    190190        if (!W_ERROR_IS_OK(werr)) {
     
    320320
    321321        werr = libnetapi_open_pipe(ctx, r->in.server_name,
    322                                    &ndr_table_samr.syntax_id,
     322                                   &ndr_table_samr,
    323323                                   &pipe_cli);
    324324        if (!W_ERROR_IS_OK(werr)) {
     
    500500
    501501        werr = libnetapi_open_pipe(ctx, r->in.server_name,
    502                                    &ndr_table_samr.syntax_id,
     502                                   &ndr_table_samr,
    503503                                   &pipe_cli);
    504504        if (!W_ERROR_IS_OK(werr)) {
     
    617617        union samr_AliasInfo *info = NULL;
    618618
    619         info = TALLOC_ZERO_P(mem_ctx, union samr_AliasInfo);
     619        info = (mem_ctx, union samr_AliasInfo);
    620620        W_ERROR_HAVE_NO_MEMORY(info);
    621621
     
    679679
    680680        werr = libnetapi_open_pipe(ctx, r->in.server_name,
    681                                    &ndr_table_samr.syntax_id,
     681                                   &ndr_table_samr,
    682682                                   &pipe_cli);
    683683        if (!W_ERROR_IS_OK(werr)) {
     
    829829
    830830        werr = libnetapi_open_pipe(ctx, r->in.server_name,
    831                                    &ndr_table_samr.syntax_id,
     831                                   &ndr_table_samr,
    832832                                   &pipe_cli);
    833833        if (!W_ERROR_IS_OK(werr)) {
     
    11221122        ZERO_STRUCT(alias_handle);
    11231123
    1124         member_sids = TALLOC_ZERO_ARRAY(ctx, struct dom_sid,
     1124        member_sids = (ctx, struct dom_sid,
    11251125                                        r->in.total_entries);
    11261126        W_ERROR_HAVE_NO_MEMORY(member_sids);
     
    11421142        if (r->in.level == 3) {
    11431143                werr = libnetapi_open_pipe(ctx, r->in.server_name,
    1144                                            &ndr_table_lsarpc.syntax_id,
     1144                                           &ndr_table_lsarpc,
    11451145                                           &lsa_pipe);
    11461146                if (!W_ERROR_IS_OK(werr)) {
     
    11611161
    11621162        werr = libnetapi_open_pipe(ctx, r->in.server_name,
    1163                                    &ndr_table_samr.syntax_id,
     1163                                   &ndr_table_samr,
    11641164                                   &pipe_cli);
    11651165        if (!W_ERROR_IS_OK(werr)) {
Note: See TracChangeset for help on using the changeset viewer.