diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-05-28 21:48:26 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-05-28 21:48:26 +1000 |
commit | f4077a05cbdb0a7bb0cc9baf120d26e026f86b9b (patch) | |
tree | f1cc058a58fa525b60235071f86f057a833c2440 /source4/libcli | |
parent | 1eabf8155486d007a69667175ae7f6bebc440122 (diff) | |
download | samba-f4077a05cbdb0a7bb0cc9baf120d26e026f86b9b.tar.gz samba-f4077a05cbdb0a7bb0cc9baf120d26e026f86b9b.tar.bz2 samba-f4077a05cbdb0a7bb0cc9baf120d26e026f86b9b.zip |
updated comment based on MS-SMB2 docs
(This used to be commit 5754cc13514a0f5fe4c47ce53521c256c9d96487)
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/smb2/create.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/libcli/smb2/create.c b/source4/libcli/smb2/create.c index bff0a1587d..342a519376 100644 --- a/source4/libcli/smb2/create.c +++ b/source4/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; |