ncrypt: Map STATUS_NOT_SUPPORTED to NTE_NOT_SUPPORTED.

Signed-off-by: Mohamad Al-Jaf <mohamadaljaf@gmail.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Mohamad Al-Jaf 2022-04-06 03:19:52 -04:00 committed by Alexandre Julliard
parent 2f2e3ea50b
commit dec096934a
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ static SECURITY_STATUS map_ntstatus(NTSTATUS status)
case STATUS_INVALID_SIGNATURE: return NTE_BAD_SIGNATURE;
case STATUS_SUCCESS: return ERROR_SUCCESS;
case STATUS_INVALID_PARAMETER: return NTE_INVALID_PARAMETER;
case STATUS_NOT_SUPPORTED: return NTE_NOT_SUPPORTED;
case NTE_BAD_DATA: return NTE_BAD_DATA;
default:
FIXME("unhandled status %#lx\n", status);