From a343c1fbd0f37a5cadd98698ae5d580727ddf0c7 Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Tue, 3 May 2011 18:51:09 +0200 Subject: [PATCH] crypt32: Fix content type in CRYPT_QueryEmbeddedMessageObject function. --- dlls/crypt32/object.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/crypt32/object.c b/dlls/crypt32/object.c index 378ce51ee47..2587c4d293c 100644 --- a/dlls/crypt32/object.c +++ b/dlls/crypt32/object.c @@ -672,8 +672,7 @@ static BOOL CRYPT_QueryEmbeddedMessageObject(DWORD dwObjectType, pdwMsgAndCertEncodingType, NULL, NULL, phCertStore, phMsg); if (ret && pdwContentType) - *pdwContentType = - CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED; + *pdwContentType = CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED; } CryptMemFree(blob.pbData); }