Ignore:
Timestamp:
May 13, 2014, 11:39:04 AM (11 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update trunk to 3.6.23

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/smbd/sesssetup.c

    r751 r862  
    910910                        (unsigned int)pblob->length ));
    911911
     912                if (pblob->length > pad->needed_len) {
     913                        DEBUG(2, ("subsequent security token data length %u "
     914                                  "exceeds expected length %u\n",
     915                                  (unsigned int)pblob->length,
     916                                  (unsigned int)pad->needed_len));
     917                }
     918
    912919                tmp_blob = data_blob(NULL,
    913920                                pad->partial_data.length + copy_len);
     
    11701177        status = check_spnego_blob_complete(sconn, smbpid, vuid, &blob1);
    11711178        if (!NT_STATUS_IS_OK(status)) {
     1179                /*
     1180                 * Pack error response, ensuring to fill NativeOS, NativeLanMan
     1181                 * & PrimaryDomain fields on NT_STATUS_MORE_PROCESSING_REQUIRED
     1182                 */
     1183                reply_outbuf(req, 4, 0);
     1184                reply_sesssetup_blob(req, data_blob_null, status);
    11721185                if (!NT_STATUS_EQUAL(status,
    11731186                                NT_STATUS_MORE_PROCESSING_REQUIRED)) {
     
    11761189                }
    11771190                data_blob_free(&blob1);
    1178                 reply_nterror(req, nt_status_squash(status));
    11791191                return;
    11801192        }
Note: See TracChangeset for help on using the changeset viewer.