Commit 16ee9aba authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msiexec: Force using /i file.msi, some programs pass properties without an =.

parent a8494aa9
...@@ -840,15 +840,8 @@ int main(int argc, char **argv) ...@@ -840,15 +840,8 @@ int main(int argc, char **argv)
FunctionUnknown = TRUE; FunctionUnknown = TRUE;
WINE_FIXME("Unknown parameter /D\n"); WINE_FIXME("Unknown parameter /D\n");
} }
else if(strchrW(argvW[i], '='))
{
StringListAppend(&property_list, argvW[i]);
}
else else
{ StringListAppend(&property_list, argvW[i]);
FunctionInstall = TRUE;
PackageName = argvW[i];
}
} }
/* start the GUI */ /* start the GUI */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment