Commit 807d368f authored by Mohamad Al-Jaf's avatar Mohamad Al-Jaf Committed by Alexandre Julliard

ncrypt: Warn on invalid flags in NCryptImportKey.

parent dec09693
...@@ -374,7 +374,7 @@ SECURITY_STATUS WINAPI NCryptImportKey(NCRYPT_PROV_HANDLE provider, NCRYPT_KEY_H ...@@ -374,7 +374,7 @@ SECURITY_STATUS WINAPI NCryptImportKey(NCRYPT_PROV_HANDLE provider, NCRYPT_KEY_H
} }
else if (flags) else if (flags)
{ {
ERR("Invalid flags %#lx\n", flags); WARN("Invalid flags %#lx\n", flags);
return NTE_BAD_FLAGS; return NTE_BAD_FLAGS;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment