From 8da77aa03e08854f21ef8c2172618d16a314da8b Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Sat, 19 Oct 2019 18:15:50 +0300 Subject: [PATCH] opensslsigners.cc: Fix parameter name It should be msg not hash --- pdns/opensslsigners.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/opensslsigners.cc b/pdns/opensslsigners.cc index a152078d1f..d0cc0809ee 100644 --- a/pdns/opensslsigners.cc +++ b/pdns/opensslsigners.cc @@ -924,7 +924,7 @@ public: void create(unsigned int bits) override; storvector_t convertToISCVector() const override; - std::string sign(const std::string& hash) const override; + std::string sign(const std::string& msg) const override; bool verify(const std::string& msg, const std::string& signature) const override; std::string getPubKeyHash() const override; std::string getPublicKeyString() const override; -- 2.47.2