From 8f19b1f94a2b2b6c67d6e869f6c2364df7d6af3a Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Mon, 21 Feb 2005 18:29:21 +0000 Subject: [PATCH] The values are quoted and spaces added, so having spaces in the properties results in spaces in the values which is incorrect. --- programs/msiexec/msiexec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/msiexec/msiexec.c b/programs/msiexec/msiexec.c index 5c0054ba982..fbd51e8f088 100644 --- a/programs/msiexec/msiexec.c +++ b/programs/msiexec/msiexec.c @@ -67,9 +67,9 @@ static const char UsageStr[] = "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','\\', -- 2.11.4.GIT