Ignore:
Timestamp:
May 12, 2014, 8:58:38 PM (11 years ago)
Author:
Silvan Scherrer
Message:

Samba 3.6: updated vendor to latest version

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/smbd/sesssetup.c

    r746 r860  
    906906                        (unsigned int)pblob->length ));
    907907
     908                if (pblob->length > pad->needed_len) {
     909                        DEBUG(2, ("subsequent security token data length %u "
     910                                  "exceeds expected length %u\n",
     911                                  (unsigned int)pblob->length,
     912                                  (unsigned int)pad->needed_len));
     913                }
     914
    908915                tmp_blob = data_blob(NULL,
    909916                                pad->partial_data.length + copy_len);
     
    11661173        status = check_spnego_blob_complete(sconn, smbpid, vuid, &blob1);
    11671174        if (!NT_STATUS_IS_OK(status)) {
     1175                /*
     1176                 * Pack error response, ensuring to fill NativeOS, NativeLanMan
     1177                 * & PrimaryDomain fields on NT_STATUS_MORE_PROCESSING_REQUIRED
     1178                 */
     1179                reply_outbuf(req, 4, 0);
     1180                reply_sesssetup_blob(req, data_blob_null, status);
    11681181                if (!NT_STATUS_EQUAL(status,
    11691182                                NT_STATUS_MORE_PROCESSING_REQUIRED)) {
     
    11721185                }
    11731186                data_blob_free(&blob1);
    1174                 reply_nterror(req, nt_status_squash(status));
    11751187                return;
    11761188        }
Note: See TracChangeset for help on using the changeset viewer.