Ignore:
Timestamp:
Jul 11, 2008, 1:13:42 AM (17 years ago)
Author:
Paul Smedley
Message:

Update branch to 3.0.31 release

Location:
branches/samba-3.0/source/rpc_client
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/rpc_client/cli_netlogon.c

    r134 r140  
    186186        result = r.status;
    187187
     188        *neg_flags_inout = r.srv_flgs.neg_flags;
     189
    188190        if (NT_STATUS_IS_OK(result)) {
    189191                *srv_chal_out = r.srv_chal;
    190                 *neg_flags_inout = r.srv_flgs.neg_flags;
    191192        }
    192193
  • branches/samba-3.0/source/rpc_client/cli_pipe.c

    r134 r140  
    447447                }
    448448
    449                 if (prhdr->auth_len + RPC_HDR_AUTH_LEN < prhdr->auth_len ||
    450                                 prhdr->auth_len + RPC_HDR_AUTH_LEN < RPC_HDR_AUTH_LEN) {
     449                if (prhdr->auth_len + (unsigned int)RPC_HDR_AUTH_LEN < prhdr->auth_len ||
     450                                prhdr->auth_len + (unsigned int)RPC_HDR_AUTH_LEN < (unsigned int)RPC_HDR_AUTH_LEN) {
    451451                        /* Integer wrap attempt. */
    452452                        return NT_STATUS_INVALID_PARAMETER;
Note: See TracChangeset for help on using the changeset viewer.