winspool: Make fixme for PRINTER_ENUM_CONNECTIONS more silent.
This commit is contained in:
parent
baaed37d6d
commit
bc85a34f50
|
@ -4047,9 +4047,15 @@ static BOOL WINSPOOL_EnumPrinters(DWORD dwType, LPWSTR lpszName,
|
|||
return TRUE;
|
||||
|
||||
if (dwType & PRINTER_ENUM_CONNECTIONS) {
|
||||
FIXME("We don't handle PRINTER_ENUM_CONNECTIONS\n");
|
||||
TRACE("ignoring PRINTER_ENUM_CONNECTIONS\n");
|
||||
dwType &= ~PRINTER_ENUM_CONNECTIONS; /* we don't handle that */
|
||||
if(!dwType) return TRUE;
|
||||
if (!dwType) {
|
||||
FIXME("We don't handle PRINTER_ENUM_CONNECTIONS\n");
|
||||
*lpdwNeeded = 0;
|
||||
*lpdwReturned = 0;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (!((dwType & PRINTER_ENUM_LOCAL) || (dwType & PRINTER_ENUM_NAME))) {
|
||||
|
|
Loading…
Reference in New Issue