mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:35:47 +00:00
[MSAFD]
TranslateNtStatusError: Translate STATUS_ACCESS_DENIED. Patch by Jacob S. Preciado. Thanks a lot! CORE-10290 #resolve svn path=/trunk/; revision=69598
This commit is contained in:
parent
6d8909a8aa
commit
2cf1ec318d
1 changed files with 3 additions and 0 deletions
|
@ -373,6 +373,9 @@ TranslateNtStatusError(NTSTATUS Status)
|
||||||
case STATUS_ACCESS_VIOLATION:
|
case STATUS_ACCESS_VIOLATION:
|
||||||
return WSAEFAULT;
|
return WSAEFAULT;
|
||||||
|
|
||||||
|
case STATUS_ACCESS_DENIED:
|
||||||
|
return WSAEACCES;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ERR("MSAFD: Unhandled NTSTATUS value: 0x%x\n", Status);
|
ERR("MSAFD: Unhandled NTSTATUS value: 0x%x\n", Status);
|
||||||
return WSAENETDOWN;
|
return WSAENETDOWN;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue