mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-21 15:45:02 +00:00
Allow NULL cookie verifiers for non-NULL offsets. This is needed for
Digital Unix boxes since they appear to always send null verifiers.
This commit is contained in:
parent
c1f94e717b
commit
c4b3a97040
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27608
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)nfs_serv.c 8.3 (Berkeley) 1/12/94
|
||||
* $Id: nfs_serv.c,v 1.44 1997/06/14 11:19:35 bde Exp $
|
||||
* $Id: nfs_serv.c,v 1.45 1997/07/16 09:06:28 dfr Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -2580,7 +2580,7 @@ nfsrv_readdir(nfsd, slp, procp, mrq)
|
||||
nqsrv_getl(vp, ND_READ);
|
||||
if (v3) {
|
||||
error = getret = VOP_GETATTR(vp, &at, cred, procp);
|
||||
if (!error && toff && verf != at.va_filerev)
|
||||
if (!error && toff && verf && verf != at.va_filerev)
|
||||
error = NFSERR_BAD_COOKIE;
|
||||
}
|
||||
if (!error)
|
||||
@ -2842,7 +2842,7 @@ nfsrv_readdirplus(nfsd, slp, procp, mrq)
|
||||
return (0);
|
||||
}
|
||||
error = getret = VOP_GETATTR(vp, &at, cred, procp);
|
||||
if (!error && toff && verf != at.va_filerev)
|
||||
if (!error && toff && verf && verf != at.va_filerev)
|
||||
error = NFSERR_BAD_COOKIE;
|
||||
if (!error) {
|
||||
nqsrv_getl(vp, ND_READ);
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)nfs_serv.c 8.3 (Berkeley) 1/12/94
|
||||
* $Id: nfs_serv.c,v 1.44 1997/06/14 11:19:35 bde Exp $
|
||||
* $Id: nfs_serv.c,v 1.45 1997/07/16 09:06:28 dfr Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -2580,7 +2580,7 @@ nfsrv_readdir(nfsd, slp, procp, mrq)
|
||||
nqsrv_getl(vp, ND_READ);
|
||||
if (v3) {
|
||||
error = getret = VOP_GETATTR(vp, &at, cred, procp);
|
||||
if (!error && toff && verf != at.va_filerev)
|
||||
if (!error && toff && verf && verf != at.va_filerev)
|
||||
error = NFSERR_BAD_COOKIE;
|
||||
}
|
||||
if (!error)
|
||||
@ -2842,7 +2842,7 @@ nfsrv_readdirplus(nfsd, slp, procp, mrq)
|
||||
return (0);
|
||||
}
|
||||
error = getret = VOP_GETATTR(vp, &at, cred, procp);
|
||||
if (!error && toff && verf != at.va_filerev)
|
||||
if (!error && toff && verf && verf != at.va_filerev)
|
||||
error = NFSERR_BAD_COOKIE;
|
||||
if (!error) {
|
||||
nqsrv_getl(vp, ND_READ);
|
||||
|
Loading…
Reference in New Issue
Block a user