Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/murmur/Cert.cpp')
-rw-r--r--src/murmur/Cert.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/murmur/Cert.cpp b/src/murmur/Cert.cpp
index 1be63a934..1e4706ea7 100644
--- a/src/murmur/Cert.cpp
+++ b/src/murmur/Cert.cpp
@@ -158,6 +158,7 @@ void Server::initializeCert() {
if (!qscCert.isNull() && issuer == QString::fromUtf8("Murmur Autogenerated Certificate v2") && ! Meta::mp.qscCert.isNull() && ! Meta::mp.qskKey.isNull() && (Meta::mp.qlBind == qlBind)) {
qscCert = Meta::mp.qscCert;
qskKey = Meta::mp.qskKey;
+ qlIntermediates = Meta::mp.qlIntermediates;
}
// If we still don't have a certificate by now, try to load the one from Meta
@@ -167,6 +168,7 @@ void Server::initializeCert() {
}
qskKey = Meta::mp.qskKey;
qscCert = Meta::mp.qscCert;
+ qlIntermediates = Meta::mp.qlIntermediates;
// If loading from Meta doesn't work, build+sign a new one
if (qscCert.isNull() || qskKey.isNull()) {