From: Jeffrey Altman Date: Thu, 24 Jan 2013 23:52:51 +0000 (-0500) Subject: Windows: AFSSetRenameInfo Notify correct object of change X-Git-Tag: upstream/1.8.0_pre1^2~1605 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=e5e952f5fc1cb8a6d2789938e30fb00e5bb570d8;p=packages%2Fo%2Fopenafs.git Windows: AFSSetRenameInfo Notify correct object of change When AFSSetRenameInfo makes a change, it is the parent object that must be notified not the parent of the parent. Change-Id: I56b3f1c076cb4abb4b5e41aed261e867a2d2ebb7 Reviewed-on: http://gerrit.openafs.org/8958 Reviewed-by: Rod Widdowson Tested-by: BuildBot Reviewed-by: Jeffrey Altman Tested-by: Jeffrey Altman --- diff --git a/src/WINNT/afsrdr/kernel/lib/AFSFileInfo.cpp b/src/WINNT/afsrdr/kernel/lib/AFSFileInfo.cpp index 03e2f6a2d..26107b4d3 100644 --- a/src/WINNT/afsrdr/kernel/lib/AFSFileInfo.cpp +++ b/src/WINNT/afsrdr/kernel/lib/AFSFileInfo.cpp @@ -3178,7 +3178,7 @@ AFSSetRenameInfo( IN PIRP Irp) // Now update the notification for the target file // - AFSFsRtlNotifyFullReportChange( pTargetParentObject->ParentObjectInformation, + AFSFsRtlNotifyFullReportChange( pTargetParentObject, pSrcCcb, (ULONG)ulNotifyFilter, (ULONG)ulNotificationAction);