msi:files.c

Aric Stewart aric at codeweavers.com
Thu Aug 25 08:50:51 CDT 2005


The file name used in the ui messages is the target name not the source name.

-------------- next part --------------
Index: dlls/msi/files.c
===================================================================
RCS file: /home/wine/wine/dlls/msi/files.c,v
retrieving revision 1.12
diff -u -r1.12 files.c
--- dlls/msi/files.c	23 Aug 2005 10:03:17 -0000	1.12
+++ dlls/msi/files.c	25 Aug 2005 13:50:49 -0000
@@ -252,7 +252,7 @@
 
         /* 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);


More information about the wine-patches mailing list