diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-05 13:10:42 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-09-05 13:17:33 +0200 |
commit | 1ba5077e5f1db07662f895e068c505479be29b48 (patch) | |
tree | 7e9f32cc4453a61083a21bbe94c30f529f7c00bc /source4/ntvfs/posix/pvfs_read.c | |
parent | d9c2aaa0008d6e3f52b6e9b47366c052ab8df9f0 (diff) | |
download | samba-1ba5077e5f1db07662f895e068c505479be29b48.tar.gz samba-1ba5077e5f1db07662f895e068c505479be29b48.tar.xz samba-1ba5077e5f1db07662f895e068c505479be29b48.zip |
s4:ntvfs: s/== PROTOCOL_SMB2/>= PROTOCOL_SMB2_02/
metze
Diffstat (limited to 'source4/ntvfs/posix/pvfs_read.c')
-rw-r--r-- | source4/ntvfs/posix/pvfs_read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_read.c b/source4/ntvfs/posix/pvfs_read.c index d25036ad4b0..34742fcf66e 100644 --- a/source4/ntvfs/posix/pvfs_read.c +++ b/source4/ntvfs/posix/pvfs_read.c @@ -96,7 +96,7 @@ NTSTATUS pvfs_read(struct ntvfs_module_context *ntvfs, } /* only SMB2 honors mincnt */ - if (req->ctx->protocol == PROTOCOL_SMB2) { + if (req->ctx->protocol >= PROTOCOL_SMB2_02) { if (rd->readx.in.mincnt > ret || (ret == 0 && maxcnt > 0)) { return NT_STATUS_END_OF_FILE; |