summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2008-05-28 21:48:26 +1000
committerAndrew Tridgell <tridge@samba.org>2008-05-28 21:48:26 +1000
commit5754cc13514a0f5fe4c47ce53521c256c9d96487 (patch)
tree56a9b698a2941eb35e7f3d08304d1ab5a3286e94 /source
parente013ada415ebb25e925f715791757330ba003b43 (diff)
downloadsamba-5754cc13514a0f5fe4c47ce53521c256c9d96487.tar.gz
updated comment based on MS-SMB2 docs
Diffstat (limited to 'source')
-rw-r--r--source/libcli/smb2/create.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/libcli/smb2/create.c b/source/libcli/smb2/create.c
index bff0a1587d6..342a5193760 100644
--- a/source/libcli/smb2/create.c
+++ b/source/libcli/smb2/create.c
@@ -387,7 +387,8 @@ NTSTATUS smb2_create_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx, struct
/* pull out the parsed blobs */
for (i=0;i<io->out.blobs.num_blobs;i++) {
if (strcmp(io->out.blobs.blobs[i].tag, SMB2_CREATE_TAG_MXAC) == 0) {
- /* why 8 bytes not 4?? */
+ /* TODO: this also contains a status field in
+ first 4 bytes */
if (io->out.blobs.blobs[i].data.length != 8) {
smb2_request_destroy(req);
return NT_STATUS_INVALID_NETWORK_RESPONSE;