diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-16 23:14:03 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-16 23:14:03 +0300 |
commit | b077e485892bf186cae0084aa4d45e468c530378 (patch) | |
tree | 983dfb5efe03d63b0912dedc14d9702ceb91c025 /protocols/MSN/src/msn_auth.cpp | |
parent | 89979c595a7711925499db9045cdc25e330b9f36 (diff) |
dynamic loading of openssl removed
Diffstat (limited to 'protocols/MSN/src/msn_auth.cpp')
-rw-r--r-- | protocols/MSN/src/msn_auth.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/protocols/MSN/src/msn_auth.cpp b/protocols/MSN/src/msn_auth.cpp index 5501cc4b51..e16cdd38e0 100644 --- a/protocols/MSN/src/msn_auth.cpp +++ b/protocols/MSN/src/msn_auth.cpp @@ -667,10 +667,6 @@ int CMsnProto::MSN_SkypeAuth(const char *pszNonce, char *pszUIC) {
int iRet = -1;
- if (g_hOpenssl == NULL) g_hOpenssl = LoadLibraryA("libeay32.dll");
- if (g_hOpenssl == NULL)
- return iRet;
-
// Perform login
SkyLogin hLogin = SkyLogin_Init();
if (hLogin) {
@@ -702,9 +698,6 @@ int CMsnProto::MSN_SkypeAuth(const char *pszNonce, char *pszUIC) int CMsnProto::LoginSkypeOAuth(const char *pRefreshToken)
{
int iRet = -1;
- if (g_hOpenssl == NULL) g_hOpenssl = LoadLibraryA("libeay32.dll");
- if (g_hOpenssl == NULL)
- return iRet;
// Perform login
SkyLogin hLogin = SkyLogin_Init();
|