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:
parent
2f2e3ea50b
commit
dec096934a
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue