From: Jeffrey Altman Date: Fri, 27 Dec 2013 03:02:50 +0000 (-0500) Subject: Windows: RDR_EvaluateNodeByName out of order param X-Git-Tag: upstream/1.8.0_pre1^2~862 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=fd9d5318023e977793a4bf62f196e70b45049f10;p=packages%2Fo%2Fopenafs.git Windows: RDR_EvaluateNodeByName out of order param The bHoldFid parameter is after the bNoFollow parameter. The two values were swapped resulting in unnecessary VLDB lookups. Change-Id: Ia94bd761576d54e9dde847385a4900f2d915c34d Reviewed-on: http://gerrit.openafs.org/10636 Tested-by: BuildBot Reviewed-by: Jeffrey Altman --- diff --git a/src/WINNT/afsrdr/user/RDRFunction.c b/src/WINNT/afsrdr/user/RDRFunction.c index a60ac14f5..01a334e79 100644 --- a/src/WINNT/afsrdr/user/RDRFunction.c +++ b/src/WINNT/afsrdr/user/RDRFunction.c @@ -1101,8 +1101,8 @@ RDR_EvaluateNodeByName( IN cm_user_t *userp, IN BOOL CaseSensitive, IN BOOL LastComponent, IN BOOL bWow64, - IN BOOL bHoldFid, IN BOOL bNoFollow, + IN BOOL bHoldFid, IN DWORD ResultBufferLength, IN OUT AFSCommResult **ResultCB) { diff --git a/src/WINNT/afsrdr/user/RDRPrototypes.h b/src/WINNT/afsrdr/user/RDRPrototypes.h index 21cab52e2..874fca59f 100644 --- a/src/WINNT/afsrdr/user/RDRPrototypes.h +++ b/src/WINNT/afsrdr/user/RDRPrototypes.h @@ -79,7 +79,7 @@ RDR_EvaluateNodeByName( IN cm_user_t *userp, IN BOOL CaseSensitive, IN BOOL LastComponent, IN BOOL bWow64, - IN BOOL bQueryStatus, + IN BOOL bFollowMount, IN BOOL bHoldFid, IN DWORD ResultBufferLength, IN OUT AFSCommResult **ResultCB);