crypt32(2/9): Correct type of a decoded signed message

Juan Lang juan.lang at gmail.com
Fri Jul 27 13:01:01 CDT 2007


--Juan
-------------- next part --------------
From 0e56a79f1be983a69c5b66e84eae50b36e65aacd Mon Sep 17 00:00:00 2001
From: Juan Lang <juanlang at juan.corp.google.com>
Date: Fri, 27 Jul 2007 10:55:44 -0700
Subject: [PATCH] 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(CDe
         break;
     case CMSG_SIGNED:
         if ((ret = CDecodeMsg_DecodeSignedContent(msg, blob)))
-            msg->type = CMSG_HASHED;
+            msg->type = CMSG_SIGNED;
         break;
     default:
     {
-- 
1.4.1


More information about the wine-patches mailing list