Line 0
Link Here
|
|
|
1 |
Description: the SSL library must be initialized, otherwise mumble and |
2 |
mumble-server both fail to find the available ciphers after a rebuild |
3 |
with openssl_1.0.2d-3. The two calls used are based on: |
4 |
https://wiki.openssl.org/index.php/SSL/TLS_Client#Initialization |
5 |
Author: Colomban Wendling <lists.ban@herbesfolles.org> |
6 |
Christohper Knadle <Chris.Knadle@coredump.us> |
7 |
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=804363 |
8 |
Bug-Mumble: https://github.com/mumble-voip/mumble/issues/1876 |
9 |
Last-Updated: 2015-11-10 |
10 |
|
11 |
--- src/mumble/main.cpp |
12 |
+++ src/mumble/main.cpp |
13 |
@@ -170,6 +170,9 @@ |
14 |
os_init(); |
15 |
#endif |
16 |
|
17 |
+ SSL_library_init(); |
18 |
+ SSL_load_error_strings(); |
19 |
+ |
20 |
bool bAllowMultiple = false; |
21 |
QUrl url; |
22 |
if (a.arguments().count() > 1) { |
23 |
--- src/murmur/main.cpp |
24 |
+++ src/murmur/main.cpp |
25 |
@@ -203,6 +203,9 @@ |
26 |
qsrand(QDateTime::currentDateTime().toTime_t()); |
27 |
qInstallMsgHandler(murmurMessageOutput); |
28 |
|
29 |
+ SSL_library_init(); |
30 |
+ SSL_load_error_strings(); |
31 |
+ |
32 |
#ifdef Q_OS_WIN |
33 |
Tray tray(NULL, &le); |
34 |
#endif |