summaryrefslogtreecommitdiff
path: root/plugins/CryptoPP/src/cpp_gpgw.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CryptoPP/src/cpp_gpgw.cpp')
-rw-r--r--plugins/CryptoPP/src/cpp_gpgw.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CryptoPP/src/cpp_gpgw.cpp b/plugins/CryptoPP/src/cpp_gpgw.cpp
index 6141ee8796..224ddf82d4 100644
--- a/plugins/CryptoPP/src/cpp_gpgw.cpp
+++ b/plugins/CryptoPP/src/cpp_gpgw.cpp
@@ -3,7 +3,7 @@
HMODULE hgpg;
HRSRC hRS_gpg;
-PBYTE pRS_gpg;
+uint8_t *pRS_gpg;
int __cdecl _gpg_init(void);
int __cdecl _gpg_done(void);
@@ -163,7 +163,7 @@ int __cdecl gpg_set_keyid(HANDLE context, LPCSTR RemoteKeyID)
ptr->error = ERROR_NONE;
SAFE_FREE(p->gpgKeyID);
- p->gpgKeyID = (PBYTE)_strdup(RemoteKeyID);
+ p->gpgKeyID = (uint8_t*)_strdup(RemoteKeyID);
return 1;
}