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

This commit is contained in:
Mike McCormack 2006-04-26 00:57:55 +09:00 committed by Alexandre Julliard
parent a8494aa9a9
commit 16ee9aba88
1 changed files with 1 additions and 8 deletions

View File

@ -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 */