diff options
Diffstat (limited to 'plugins/CryptoPP/PGPw/main.cpp')
-rw-r--r-- | plugins/CryptoPP/PGPw/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CryptoPP/PGPw/main.cpp b/plugins/CryptoPP/PGPw/main.cpp index 116615b839..8427046a16 100644 --- a/plugins/CryptoPP/PGPw/main.cpp +++ b/plugins/CryptoPP/PGPw/main.cpp @@ -45,7 +45,7 @@ void _pgp_memcpy(LPSTR dst, LPSTR src, UINT size) int __cdecl _pgp_init()
{
- if(!pgpErrMsg)
+ if (!pgpErrMsg)
pgpErrMsg = (LPSTR) LocalAlloc(LPTR,pgpErrMsgLen);
pgpVer = 0;
@@ -172,7 +172,7 @@ LPSTR __cdecl _pgp_encrypt_keydb(LPCSTR szPlainMsg, PVOID pgpKeyID) DWORD dwEncMsgLen;
ClearPGPError();
- if(!pgpKeyDB)
+ if (!pgpKeyDB)
return 0;
#if (PGP_WIN32 < 0x700)
@@ -221,7 +221,7 @@ LPSTR __cdecl _pgp_decrypt_keydb(LPCSTR szEncMsg) DWORD dwPlainMsgLen;
ClearPGPError();
- if(!pgpKeyDB)
+ if (!pgpKeyDB)
return 0;
int iTry = 0;
|