summaryrefslogtreecommitdiff
path: root/src/wx/config_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-09-13 23:43:12 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-13 23:43:12 +0200
commitc1d3f6f4f645e76302ca4262de3517497fa1e14b (patch)
tree1e12c089628be8bb798b425ef78865773b6b7e2e /src/wx/config_dialog.cc
parent73747a031e35ab8884aa16ebd3c8721dfb0391bc (diff)
parent4f850f9958beacd8d2b39fda1941b68ffb94b2f0 (diff)
Merge remote-tracking branch 'origin/main' into v2.17.x
Diffstat (limited to 'src/wx/config_dialog.cc')
-rw-r--r--src/wx/config_dialog.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc
index bd8582ea6..19d23c6cc 100644
--- a/src/wx/config_dialog.cc
+++ b/src/wx/config_dialog.cc
@@ -475,7 +475,7 @@ CertificateChainEditor::export_certificate ()
}
dcp::File f(path, "w");
if (!f) {
- throw OpenFileError(path, errno, OpenFileError::WRITE);
+ throw OpenFileError(path, f.open_error(), OpenFileError::WRITE);
}
string const s = j->certificate(true);
@@ -500,7 +500,7 @@ CertificateChainEditor::export_chain ()
}
dcp::File f(path, "w");
if (!f) {
- throw OpenFileError(path, errno, OpenFileError::WRITE);
+ throw OpenFileError(path, f.open_error(), OpenFileError::WRITE);
}
auto const s = _get()->chain();
@@ -621,7 +621,7 @@ CertificateChainEditor::export_private_key ()
}
dcp::File f(path, "w");
if (!f) {
- throw OpenFileError (path, errno, OpenFileError::WRITE);
+ throw OpenFileError(path, f.open_error(), OpenFileError::WRITE);
}
auto const s = _get()->key().get ();
@@ -739,7 +739,7 @@ KeysPage::export_decryption_chain_and_key ()
boost::filesystem::path path(wx_to_std(d->GetPath()));
dcp::File f(path, "w");
if (!f) {
- throw OpenFileError(path, errno, OpenFileError::WRITE);
+ throw OpenFileError(path, f.open_error(), OpenFileError::WRITE);
}
auto const chain = Config::instance()->decryption_chain()->chain();
@@ -773,7 +773,7 @@ KeysPage::import_decryption_chain_and_key ()
dcp::File f(wx_to_std(d->GetPath()), "r");
if (!f) {
- throw OpenFileError(f.path(), errno, OpenFileError::WRITE);
+ throw OpenFileError(f.path(), f.open_error(), OpenFileError::WRITE);
}
string current;
@@ -838,7 +838,7 @@ KeysPage::export_decryption_certificate ()
}
dcp::File f(path, "w");
if (!f) {
- throw OpenFileError(path, errno, OpenFileError::WRITE);
+ throw OpenFileError(path, f.open_error(), OpenFileError::WRITE);
}
auto const s = Config::instance()->decryption_chain()->leaf().certificate (true);