diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-11-23 09:48:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-11-23 09:48:08 +0100 |
| commit | 718ece464db6bfbffdf8f82a9c4df9ae71ba795a (patch) | |
| tree | b013657368009df3db151a69ef9fbde157fe6df0 /src | |
| parent | d6bec686c729218bcca64d64d9b2d178fcfd627f (diff) | |
Throw exceptions when failing to load config.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/config.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc index 5b0a50ede..bd17dcbcf 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -648,6 +648,8 @@ catch (...) { /* And similar for decryption of KDMs */ _decryption_chain = create_certificate_chain (); write_config(); + + throw; } |
