From fd9d5318023e977793a4bf62f196e70b45049f10 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Thu, 26 Dec 2013 22:02:50 -0500 Subject: [PATCH] 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 --- src/WINNT/afsrdr/user/RDRFunction.c | 2 +- src/WINNT/afsrdr/user/RDRPrototypes.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); -- 2.39.5