Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
5091bd9a
Commit
5091bd9a
authored
Mar 19, 2007
by
Kai Blin
Committed by
Alexandre Julliard
Mar 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
netapi32: Downgrade more ERRs to TRACEs.
parent
fa841ae3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
ds.c
dlls/netapi32/ds.c
+1
-1
wksta.c
dlls/netapi32/wksta.c
+3
-3
No files found.
dlls/netapi32/ds.c
View file @
5091bd9a
...
...
@@ -116,7 +116,7 @@ DWORD WINAPI DsRoleGetPrimaryDomainInformation(
POLICY_VIEW_LOCAL_INFORMATION
,
&
PolicyHandle
);
if
(
NtStatus
!=
STATUS_SUCCESS
)
{
ERR
(
"LsaOpenPolicyFailed with NT status %x
\n
"
,
TRACE
(
"LsaOpenPolicyFailed with NT status %x
\n
"
,
LsaNtStatusToWinError
(
NtStatus
));
return
ERROR_OUTOFMEMORY
;
}
...
...
dlls/netapi32/wksta.c
View file @
5091bd9a
...
...
@@ -295,7 +295,7 @@ NetWkstaTransportEnum(LPWSTR ServerName, DWORD level, PBYTE* pbuf,
break
;
}
default:
ERR
(
"Invalid level %d is specified
\n
"
,
level
);
TRACE
(
"Invalid level %d is specified
\n
"
,
level
);
ret
=
ERROR_INVALID_LEVEL
;
}
}
...
...
@@ -366,7 +366,7 @@ NET_API_STATUS WINAPI NetWkstaUserGetInfo(LPWSTR reserved, DWORD level,
&
PolicyHandle
);
if
(
NtStatus
!=
STATUS_SUCCESS
)
{
ERR
(
"LsaOpenPolicyFailed with NT status %x
\n
"
,
TRACE
(
"LsaOpenPolicyFailed with NT status %x
\n
"
,
LsaNtStatusToWinError
(
NtStatus
));
NetApiBufferFree
(
ui0
);
return
ERROR_NOT_ENOUGH_MEMORY
;
...
...
@@ -426,7 +426,7 @@ NET_API_STATUS WINAPI NetWkstaUserGetInfo(LPWSTR reserved, DWORD level,
break
;
}
default:
ERR
(
"Invalid level %d is specified
\n
"
,
level
);
TRACE
(
"Invalid level %d is specified
\n
"
,
level
);
return
ERROR_INVALID_LEVEL
;
}
return
NERR_Success
;
...
...
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