Changeset 862 for trunk/server/source3/smbd/sesssetup.c
- Timestamp:
- May 13, 2014, 11:39:04 AM (11 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 860
- Property svn:mergeinfo changed
-
trunk/server/source3/smbd/sesssetup.c
r751 r862 910 910 (unsigned int)pblob->length )); 911 911 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 912 919 tmp_blob = data_blob(NULL, 913 920 pad->partial_data.length + copy_len); … … 1170 1177 status = check_spnego_blob_complete(sconn, smbpid, vuid, &blob1); 1171 1178 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); 1172 1185 if (!NT_STATUS_EQUAL(status, 1173 1186 NT_STATUS_MORE_PROCESSING_REQUIRED)) { … … 1176 1189 } 1177 1190 data_blob_free(&blob1); 1178 reply_nterror(req, nt_status_squash(status));1179 1191 return; 1180 1192 }
Note:
See TracChangeset
for help on using the changeset viewer.