diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-01 18:49:10 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-01 18:49:10 +0300 |
commit | 40a2497838dcaf2f48366731904ddcbc2545a073 (patch) | |
tree | ce897463bc5bfebfef514d23618565ec26ce7896 /protocols/Gadu-Gadu/src/core.cpp | |
parent | 0f2e98b6058835b2dc0dbad8fd648b398d2a8917 (diff) |
fixes #3367 (GG: удалить неиспользуемые опции)
Diffstat (limited to 'protocols/Gadu-Gadu/src/core.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/src/core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/src/core.cpp b/protocols/Gadu-Gadu/src/core.cpp index 7009141127..1b5ab5c32d 100644 --- a/protocols/Gadu-Gadu/src/core.cpp +++ b/protocols/Gadu-Gadu/src/core.cpp @@ -331,8 +331,8 @@ void __cdecl GaduProto::mainthread(void *) }
// Readup SSL/TLS setting
- if (p.tls = m_useSslConnection)
- debugLogA("mainthread() (%x): Using TLS/SSL for connections.", this);
+ p.tls = true;
+ debugLogA("mainthread() (%x): Using TLS/SSL for connections.", this);
// Gadu-Gadu accepts image sizes upto 255
p.image_size = 255;
|