Commit 211a8d32 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Correct type of a decoded signed message.

parent fd1e88ae
...@@ -1422,7 +1422,7 @@ static BOOL CDecodeMsg_DecodeContent(CDecodeMsg *msg, CRYPT_DER_BLOB *blob, ...@@ -1422,7 +1422,7 @@ static BOOL CDecodeMsg_DecodeContent(CDecodeMsg *msg, CRYPT_DER_BLOB *blob,
break; break;
case CMSG_SIGNED: case CMSG_SIGNED:
if ((ret = CDecodeMsg_DecodeSignedContent(msg, blob))) if ((ret = CDecodeMsg_DecodeSignedContent(msg, blob)))
msg->type = CMSG_HASHED; msg->type = CMSG_SIGNED;
break; break;
default: default:
{ {
......
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