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/utils/netlookup.c

    r740 r988  
    7979        }
    8080
    81         cs = TALLOC_P(ctx, struct con_struct);
     81        cs = talloc(ctx, struct con_struct);
    8282        if (!cs) {
    8383                *perr = NT_STATUS_NO_MEMORY;
     
    9999#endif
    100100
    101         nt_status = cli_full_connection(&cs->cli, global_myname(), global_myname(),
     101        nt_status = cli_full_connection(&cs->cli, lp_netbios_name(), lp_netbios_name(),
    102102                                        &loopback_ss, 0,
    103103                                        "IPC$", "IPC",
     
    112112#endif
    113113                                        0,
    114                                         Undefined);
     114                                        SMB_SIGNING_DEFAULT);
    115115
    116116        if (!NT_STATUS_IS_OK(nt_status)) {
     
    123123
    124124        nt_status = cli_rpc_pipe_open_noauth(cs->cli,
    125                                         &ndr_table_lsarpc.syntax_id,
     125                                        &ndr_table_lsarpc,
    126126                                        &cs->lsapipe);
    127127
Note: See TracChangeset for help on using the changeset viewer.