Timestamp:
Jul 1, 2011, 8:40:10 AM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update trunk to 3.5.6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/rpc_client/cli_pipe.c

    r429 r590  
    32143214        result->a_u.schannel_auth->seq_num = 0;
    32153215        result->a_u.schannel_auth->initiator = true;
    3216         result->a_u.schannel_auth->creds = creds;
     3216        result->a_u.schannel_auth->creds = ;
    32173217
    32183218        *presult = result;
     
    40454045        /*
    40464046         * The credentials on a new netlogon pipe are the ones we are passed
    4047          * in - reference them in
     4047         * in -
    40484048         */
    4049         result->dc = talloc_move(result, pdc);
     4049        result->dc = netlogon_creds_copy(result, *pdc);
     4050        if (result->dc == NULL) {
     4051                TALLOC_FREE(result);
     4052                return NT_STATUS_NO_MEMORY;
     4053        }
    40504054
    40514055        DEBUG(10,("cli_rpc_pipe_open_schannel_with_key: opened pipe %s to machine %s "
Note: See TracChangeset for help on using the changeset viewer.