Ignore:
Timestamp:
Jun 6, 2016, 7:23:43 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to latest 3.6.25

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/rpc_server/netlogon/srv_netlog_nt.c

    r860 r914  
    10711071        bool schannel_global_required = (lp_server_schannel() == true) ? true:false;
    10721072
     1073        if (creds_out != NULL) {
     1074                *creds_out = NULL;
     1075        }
     1076
    10731077        if (schannel_global_required) {
    10741078                status = schannel_check_required(&p->auth,
     
    12061210        NTSTATUS status = NT_STATUS_OK;
    12071211        int i;
    1208         struct netlogon_creds_CredentialState *creds;
     1212        struct netlogon_creds_CredentialState *creds = NULL;
    12091213
    12101214        DEBUG(5,("_netr_ServerPasswordSet: %d\n", __LINE__));
     
    12191223
    12201224        if (!NT_STATUS_IS_OK(status)) {
     1225                const char *computer_name = "<unknown>";
     1226
     1227                if (creds != NULL && creds->computer_name != NULL) {
     1228                        computer_name = creds->computer_name;
     1229                }
    12211230                DEBUG(2,("_netr_ServerPasswordSet: netlogon_creds_server_step failed. Rejecting auth "
    12221231                        "request from client %s machine account %s\n",
    1223                         r->in.computer_name, creds->computer_name));
     1232                        r->in.computer_name, computer_name));
    12241233                TALLOC_FREE(creds);
    12251234                return status;
Note: See TracChangeset for help on using the changeset viewer.