Module: wine Branch: master Commit: 211a8d324f0cdf4e2be1678c5bf8e603be45a2d4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=211a8d324f0cdf4e2be1678c5b...
Author: Juan Lang juan.lang@gmail.com Date: Fri Jul 27 10:55:44 2007 -0700
crypt32: Correct type of a decoded signed message.
---
dlls/crypt32/msg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/crypt32/msg.c b/dlls/crypt32/msg.c index f6cddbb..ee116bd 100644 --- a/dlls/crypt32/msg.c +++ b/dlls/crypt32/msg.c @@ -1422,7 +1422,7 @@ static BOOL CDecodeMsg_DecodeContent(CDecodeMsg *msg, CRYPT_DER_BLOB *blob, break; case CMSG_SIGNED: if ((ret = CDecodeMsg_DecodeSignedContent(msg, blob))) - msg->type = CMSG_HASHED; + msg->type = CMSG_SIGNED; break; default: {