diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-11 09:54:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-11 09:54:09 +0000 |
commit | 43fc7b251649ff90ff72994c097f8b1f7b8f0b48 (patch) | |
tree | bc9deebf390be6cd004faa698cf0cc217d4937ca /protocols/Gadu-Gadu/src/gg.cpp | |
parent | 535b7c921c5fc4d3f6cc6bff4ad321805e0ab070 (diff) |
fix for strange SSL API structure name
git-svn-id: http://svn.miranda-ng.org/main/trunk@14905 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu/src/gg.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/src/gg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/src/gg.cpp b/protocols/Gadu-Gadu/src/gg.cpp index cf9f0aad10..af3bd97329 100644 --- a/protocols/Gadu-Gadu/src/gg.cpp +++ b/protocols/Gadu-Gadu/src/gg.cpp @@ -41,7 +41,7 @@ PLUGININFOEX pluginInfo = { // Other variables
HINSTANCE hInstance;
-SSL_API si;
+SSL_API sslApi;
CLIST_INTERFACE *pcli;
int hLangpack;
LIST<GGPROTO> g_Instances(1, PtrKeySortT);
@@ -181,7 +181,7 @@ void GGPROTO::cleanuplastplugin(DWORD version) static int gg_modulesloaded(WPARAM wParam, LPARAM lParam)
{
// Get SSL API
- mir_getSI(&si);
+ mir_getSI(&sslApi);
// File Association Manager support
gg_links_init();
|