diff options
| -rw-r--r-- | src/dcp.cc | 2 | ||||
| -rw-r--r-- | src/pkl.cc | 2 | ||||
| -rw-r--r-- | src/pkl.h | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -445,7 +445,7 @@ DCP::write_xml (shared_ptr<const CertificateChain> signer, NameFormat name_forma NameFormat::Map values; values['t'] = "pkl"; auto pkl_path = _directory / name_format.get(values, "_" + pkl->id() + ".xml"); - pkl->write (pkl_path, signer); + pkl->write_xml (pkl_path, signer); if (!_asset_map) { _asset_map = AssetMap( @@ -94,7 +94,7 @@ PKL::add_asset (std::string id, boost::optional<std::string> annotation_text, st void -PKL::write (boost::filesystem::path file, shared_ptr<const CertificateChain> signer) const +PKL::write_xml (boost::filesystem::path file, shared_ptr<const CertificateChain> signer) const { xmlpp::Document doc; xmlpp::Element* pkl; @@ -67,7 +67,7 @@ public: void clear_assets(); void add_asset (std::string id, boost::optional<std::string> annotation_text, std::string hash, int64_t size, std::string type); - void write (boost::filesystem::path file, std::shared_ptr<const CertificateChain> signer) const; + void write_xml (boost::filesystem::path file, std::shared_ptr<const CertificateChain> signer) const; /** @return the most recent disk file used to read or write this PKL, if there is one */ boost::optional<boost::filesystem::path> file () const { |
