From 50a9b78253f303314383bbb80daa98189f5e9e52 Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Thu, 25 Aug 2005 15:20:34 +0000 Subject: [PATCH] The file name used in the ui messages is the target name not the source name. --- dlls/msi/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/files.c b/dlls/msi/files.c index c556fe0551a..25102899a23 100644 --- a/dlls/msi/files.c +++ b/dlls/msi/files.c @@ -252,7 +252,7 @@ static INT_PTR cabinet_notify(FDINOTIFICATIONTYPE fdint, PFDINOTIFICATION pfdin) /* the UI chunk */ uirow=MSI_CreateRecord(9); - MSI_RecordSetStringW( uirow, 1, f->File ); + MSI_RecordSetStringW( uirow, 1, f->FileName ); uipath = strdupW( f->TargetPath ); *(strrchrW(uipath,'\\')+1)=0; MSI_RecordSetStringW(uirow,9,uipath);