Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
5de733e4
Commit
5de733e4
authored
May 20, 2006
by
Detlef Riekenberg
Committed by
Alexandre Julliard
May 22, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winspool: An empty string as server name is valid (EnumPrinterDrivers).
parent
eb1b3976
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
info.c
dlls/winspool/info.c
+4
-3
No files found.
dlls/winspool/info.c
View file @
5de733e4
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
* Copyright 1999 Klaas van Gend
* Copyright 1999 Klaas van Gend
* Copyright 1999, 2000 Huw D M Davies
* Copyright 1999, 2000 Huw D M Davies
* Copyright 2001 Marcus Meissner
* Copyright 2001 Marcus Meissner
* Copyright 2005, 2006 Detlef Riekenberg
*
*
* This library is free software; you can redistribute it and/or
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* modify it under the terms of the GNU Lesser General Public
...
@@ -4042,9 +4043,9 @@ static BOOL WINSPOOL_EnumPrinterDrivers(LPWSTR pName, LPWSTR pEnvironment,
...
@@ -4042,9 +4043,9 @@ static BOOL WINSPOOL_EnumPrinterDrivers(LPWSTR pName, LPWSTR pEnvironment,
Level
,
pDriverInfo
,
cbBuf
,
unicode
);
Level
,
pDriverInfo
,
cbBuf
,
unicode
);
/* check for local drivers */
/* check for local drivers */
if
(
pName
)
{
if
(
(
pName
)
&&
(
pName
[
0
])
)
{
ERR
(
"remote drivers unsupported! Current remote host is %s
\n
"
,
FIXME
(
"remote drivers (%s) not supported!
\n
"
,
debugstr_w
(
pName
));
debugstr_w
(
pName
)
);
SetLastError
(
ERROR_ACCESS_DENIED
);
return
FALSE
;
return
FALSE
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment