Commit 31695b54 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

A "1" is returned not a 1 for AssignmentType. Also as a bit more to

the FIXME message.
parent 0569609e
......@@ -574,9 +574,12 @@ UINT WINAPI MsiGetProductInfoW(LPCWSTR szProduct, LPCWSTR szAttribute,
}
else if (strcmpW(szAttribute, szAssignmentType)==0)
{
FIXME("0 (zero) if advertised, 1(one) if per machine.\n");
FIXME("0 (zero) if advertised or per user , 1(one) if per machine.\n");
if (szBuffer)
szBuffer[0] = 1;
{
szBuffer[0] = '1';
szBuffer[1] = 0;
}
if (pcchValueBuf)
*pcchValueBuf = 1;
r = ERROR_SUCCESS;
......
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