msiexec: remove unneeded spaces

Aric Stewart aric at codeweavers.com
Sat Feb 19 04:49:46 CST 2005


The values are quoted and spaces added, so having spaces in the 
properties results in spaces in the values with is incorrect.
-------------- next part --------------
Index: programs/msiexec/msiexec.c
===================================================================
RCS file: /home/wine/wine/programs/msiexec/msiexec.c,v
retrieving revision 1.24
diff -u -u -r1.24 msiexec.c
--- programs/msiexec/msiexec.c	10 Feb 2005 20:26:30 -0000	1.24
+++ programs/msiexec/msiexec.c	19 Feb 2005 10:48:31 -0000
@@ -67,9 +67,9 @@
 "Copyright 2004 Vincent Béron\n";
 
 static const WCHAR ActionAdmin[] = {
-   'A','C','T','I','O','N','=','A','D','M','I','N',' ',0 };
+   'A','C','T','I','O','N','=','A','D','M','I','N',0 };
 static const WCHAR RemoveAll[] = {
-   'R','E','M','O','V','E','=','A','L','L',' ',0 };
+   'R','E','M','O','V','E','=','A','L','L',0 };
 
 static const WCHAR InstallRunOnce[] = {
    'S','o','f','t','w','a','r','e','\\',


More information about the wine-patches mailing list