diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-11-26 23:15:28 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-05-19 03:43:24 +0200 |
commit | 276155ebe520618900268d9e617ed71708ed5701 (patch) | |
tree | 85e76494084fa8aa593c715cccf837f2f1e97380 /onlineupdate | |
parent | c51470fe6be37075106e6d6614e0eb1664c04643 (diff) |
disable warning 4204
nonstandard extension used
Change-Id: I7d24417dfb14fa659e50c36889bedee406ce9401
Diffstat (limited to 'onlineupdate')
-rw-r--r-- | onlineupdate/source/libmar/verify/cryptox.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/onlineupdate/source/libmar/verify/cryptox.c b/onlineupdate/source/libmar/verify/cryptox.c index 0e17f77033dc..f71c4cef1b06 100644 --- a/onlineupdate/source/libmar/verify/cryptox.c +++ b/onlineupdate/source/libmar/verify/cryptox.c @@ -13,6 +13,9 @@ #if defined(MAR_NSS) +#pragma warning(push) +#pragma warning(disable: 4204) + /** * Loads the public key for the specified cert name from the NSS store. * @@ -267,6 +270,8 @@ CryptoAPI_VerifyUpdate(HCRYPTHASH* hash, BYTE *buf, DWORD len) return result ? CryptoX_Success : CryptoX_Error; } +#pragma warning(pop) + #endif |