summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-11 00:52:20 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-11 00:52:20 +0100
commit06bef69669e2cbf6ead9061ab49b2e9dbf38e329 (patch)
treefc01c5d391be85d0d52161d467d9930468c375f6 /src
parentf3baa1f5f11940fa5e60d167628652babf2466b5 (diff)
Write config after certificate chains have been created
so that they are not created again (part of #651).
Diffstat (limited to 'src')
-rw-r--r--src/lib/config.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index d99cd5fcb..f71fff86c 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -124,6 +124,7 @@ Config::read ()
_signer_chain.reset (new dcp::CertificateChain (openssl_path ()));
/* And similar for decryption of KDMs */
_decryption_chain.reset (new dcp::CertificateChain (openssl_path ()));
+ write ();
return;
}